what is it?
pjax loads HTML from your server into the current page without a full reload. It's ajax with real permalinks, page titles, and a working back button that fully degrades.
pjax enhances the browsing experience - nothing more.
You can find a demo on http://pjax.heroku.com/
browser support
pjax only works with browsers that support the history.pushState API.
For a table of supported browsers see: http://caniuse.com/#search=pushstate
To check if pjax is supported, use the
$.support.pjax
boolean.When pjax is not supported,
$('a').pjax()
calls will do nothing (aka links work normally) and $.pjax({url:url})
calls will redirect to the given URL.
No comments:
Post a Comment