Skip to content

Instantly share code, notes, and snippets.

@garethredfern
Created August 24, 2012 15:33
Show Gist options
  • Save garethredfern/3452038 to your computer and use it in GitHub Desktop.
Save garethredfern/3452038 to your computer and use it in GitHub Desktop.
Back Button Using jQuery
(function() {
$('.back').on('click', function(e) {
history.back()
e.preventDefault();
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment