In the code below, I can make the back button, but is there a way to make the link necessary so that the last page is part of the current site?
$(document).ready(function(){ $('a.back').click(function(){ parent.history.back(); return false; }); });
If the last page was not part of the current site, then the ideal id would like to specify a backup link.
thanks
javascript jquery back
Evans
source share