ingenious/jquery-history

Composer fork of balupton/jquery-history

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 72

Language:JavaScript

Type:component

dev-master 2015-09-25 19:53 UTC

This package is auto-updated.

Last update: 2024-04-29 02:59:24 UTC


README

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