Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

History


Average rating
(14 votes)

Plugin is for Ajax-driven pages to have back/forward navigation and to allow bookmarking.

Sample code:

function callback(hash)
{
    // do stuff that loads page content based on hash variable
}
$(document).ready(function() {
    $.history.init(callback);
    $("a[@rel='history']").click(function(){
        $.history.load(this.href.replace(/^.*#/, ''));
        return false;
    });
});

Releases

Official releasesDateSizeLinksStatus
1.0.0-beta-12008-Feb-294.99 KBRecommended for 1.2.xThis is currently the recommended release for 1.2.x.