Skip to content

Instantly share code, notes, and snippets.

@trentsnippets
Created June 15, 2014 02:54
Show Gist options
  • Save trentsnippets/cc521f42932c84a402a0 to your computer and use it in GitHub Desktop.
Save trentsnippets/cc521f42932c84a402a0 to your computer and use it in GitHub Desktop.
Html5 Push state Starter
jQuery('#element').on('click', function(event) {
// if pushState is supported!
if (Modernizr.history) {
event.preventDefault();
var url_to_load = 'our-work';
history.pushState(url_to_load, '', url_to_load);
}else{
//pushState not supported
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment