All Projects → bevry-archive → Jquery History

bevry-archive / Jquery History

Licence: mit
Super-seeded by https://github.com/browserstate/history.js

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Jquery History

Jquery Ajaxy
jQuery Ajaxy aims at solving complicated AJAX Paradigms by providing you with a easy managed solution to bind into page state (URL Hash) changes, AJAX form submits, and support AJAX links
Stars: ✭ 125 (-31.69%)
Mutual labels:  state-management, client-side, jquery-plugin
jquery-smarty
jQuery Smarty Plugin (jQSmarty) is a port of the Smarty Templating Engine to Javascript/jQuery, offering a familiar client-side templating solution
Stars: ✭ 18 (-90.16%)
Mutual labels:  jquery-plugin, client-side
Final Form
🏁 Framework agnostic, high performance, subscription-based form state management
Stars: ✭ 2,787 (+1422.95%)
Mutual labels:  state-management, client-side
Jquery Lightbox
Superseded by Fancybox: https://fancyapps.com/fancybox/3/
Stars: ✭ 90 (-50.82%)
Mutual labels:  client-side, jquery-plugin
Jquery Scrollto
jQuery ScrollTo - Smooth Scrolling to any jQuery/DOM Element
Stars: ✭ 363 (+98.36%)
Mutual labels:  client-side, jquery-plugin
Jquery Syntaxhighlighter
jQuery Extension for Google's Prettify Syntax Highlighter
Stars: ✭ 123 (-32.79%)
Mutual labels:  client-side, jquery-plugin
Sticky Sidebar
😎 Pure JavaScript tool for making smart and high performance sticky sidebar.
Stars: ✭ 2,057 (+1024.04%)
Mutual labels:  jquery-plugin
Documentation
How does it all fit together?
Stars: ✭ 177 (-3.28%)
Mutual labels:  state-management
Sheetsu Web Client
Sheetsu Web Client
Stars: ✭ 167 (-8.74%)
Mutual labels:  client-side
Hgplaceholders
Nice library to show placeholders and Empty States for any UITableView/UICollectionView in your project
Stars: ✭ 2,048 (+1019.13%)
Mutual labels:  state-management
Statefulviewcontroller
Placeholder views based on content, loading, error or empty states
Stars: ✭ 2,139 (+1068.85%)
Mutual labels:  state-management
Create flutter provider app
A boilerplate project created in Flutter using Provider and Firebase.
Stars: ✭ 180 (-1.64%)
Mutual labels:  state-management
Ui Components
Most used UI Components — of web applications. Curated/Most loved components for web development
Stars: ✭ 175 (-4.37%)
Mutual labels:  jquery-plugin
Riptide
Client-side response routing for Spring
Stars: ✭ 169 (-7.65%)
Mutual labels:  client-side
State Machine Component
⚙️ State machine -powered components in 250 bytes
Stars: ✭ 178 (-2.73%)
Mutual labels:  state-management
Spaceace
A fancy immutable storage library for JavaScript
Stars: ✭ 167 (-8.74%)
Mutual labels:  state-management
Hydrated bloc
An extension to the bloc state management library which automatically persists and restores bloc states.
Stars: ✭ 181 (-1.09%)
Mutual labels:  state-management
Stickyfloat
This plugin makes it possible to have a fixed position element that is relative to it’s parent. A normal fixed positioned element would be “out of context” and is very difficult to use in the most common situations with fluid designs. This plugin solves that problem with as little code as I could possible get it so it will run in the most optimized way, while also allow you to customize it in many important ways which might suit you best.
Stars: ✭ 166 (-9.29%)
Mutual labels:  jquery-plugin
Graphql Normalizr
Normalize GraphQL responses for persisting in the client cache/state
Stars: ✭ 175 (-4.37%)
Mutual labels:  state-management
Lulu
LuLu UI for PC web
Stars: ✭ 2,354 (+1186.34%)
Mutual labels:  jquery-plugin

jQuery History

Super-seeded by github.com/balupton/history.js - jQuery History allows you to easily track changes of the pages state by tracking URL Hashes. Supports changes triggered by bookmarks and back & forward buttons, as well as cross browser support.

Usage

Refer to the demo and the source code

Query Strings

If you would like to have a QueryString in your hash and fetch the contents of it. So for example we have:

http://localhost/page/#subpage?a=true&b=false

And we would like to extract b. Then we can do:

var hashData = hash.queryStringToJSON();
console.log(hashData); // {a:true,b:false}
console.log(hashData.a); // true
console.log(hashData.b); // false

But first, you will have to download the queryStringToJSON function from within here:

https://github.com/balupton/jquery-sparkle/blob/master/scripts/resources/core.string.js

And place it within your own code. It is not included within jQuery History by default, as it is not essential.

History

You can discover the history inside the History.md file

License

Licensed under the MIT License
Copyright © 2008-2010 Benjamin Arthur Lupton

Thanks

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].