Skip to content

Instantly share code, notes, and snippets.

@nickboyce
Created April 11, 2012 13:48
Show Gist options
  • Save nickboyce/2359401 to your computer and use it in GitHub Desktop.
Save nickboyce/2359401 to your computer and use it in GitHub Desktop.
$(window).bind('popstate', function(event) {
var filename = location.pathname.substr(location.pathname.lastIndexOf("/"));
if (filename.indexOf("page1") > 0) {
// go back to the page1 context
} else {
// go to the page2 context
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment