2017 © Pedro Peláez
 

component jquery-history

Composer fork of balupton/jquery-history

image

ingenious/jquery-history

Composer fork of balupton/jquery-history

  • Friday, September 25, 2015
  • by ingenious
  • Repository
  • 1 Watchers
  • 0 Stars
  • 6 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 81 Forks
  • 0 Open issues
  • 1 Versions
  • 100 % Grown

The README.md

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)

Usage

Refer to the demo and the source code, (*2)

Query Strings

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)

History

You can discover the history inside the History.md file, (*7)

License

Licensed under the MIT License br/Copyright © 2008-2010 Benjamin Arthur Lupton, (*8)

Thanks

The Versions

25/09 2015

dev-master

9999999-dev

Composer fork of balupton/jquery-history

  Sources   Download

MIT

by Benjamin Lupton