/ Published in: jQuery
Just a simple back button. The result is equal as if you clicked on the back browser button.
Expand |
Embed | Plain Text
$(document).ready(function(){ $('a.back').click(function(){ parent.history.back(); return false; }); });
You need to login to post a comment.
