Composer fork of balupton/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., (*1)
Refer to the demo and the source code, (*2)
If you would like to have a QueryString in your hash and fetch the contents of it. So for example we have:, (*3)
http://localhost/page/#subpage?a=true&b=false
And we would like to extract b. Then we can do:, (*4)
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:, (*5)
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., (*6)
You can discover the history inside the History.md file, (*7)
Licensed under the MIT License br/Copyright © 2008-2010 Benjamin Arthur Lupton, (*8)