Skip to content

Instantly share code, notes, and snippets.

@robertmagnusson
Created January 24, 2014 15:28
Show Gist options
  • Save robertmagnusson/8599464 to your computer and use it in GitHub Desktop.
Save robertmagnusson/8599464 to your computer and use it in GitHub Desktop.
History back button
$('a.history-back').click(function() {
history.back();
return false;
});
// Back link.
if (document.referrer.indexOf(window.location.hostname) != -1) {
$('#block-boxes-history-back').show();
$('a.history-back:not(.processed)').click(function(event) {
event.preventDefault();
parent.history.back();
}).addClass('processed');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment