/ 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
Copy this code and paste it in your HTML
$(document).ready(function(){ $('a.back').click(function(){ parent.history.back(); return false; }); });