Skip to content

Instantly share code, notes, and snippets.

@jcamp
Created August 15, 2018 14:07
Show Gist options
  • Save jcamp/bb2755914052d56eaa900a2d27141fbd to your computer and use it in GitHub Desktop.
Save jcamp/bb2755914052d56eaa900a2d27141fbd to your computer and use it in GitHub Desktop.
Simulate a goback link for navigation (jQuery)
$(document).ready(function(){
$('a.back').click(function(){
parent.history.back();
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment