Skip to content

Instantly share code, notes, and snippets.

@djs070
Created April 19, 2012 07:14
Show Gist options
  • Save djs070/2419322 to your computer and use it in GitHub Desktop.
Save djs070/2419322 to your computer and use it in GitHub Desktop.
Javascript back button (only sends back if previous page within current site)
if (document.referrer.indexOf(window.location.hostname) != -1){
document.write('<div class="back-link js-only">' +
'<a href="javascript: window.history.go(-1)">Back</a>' +
'</div>'
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment