A jquery back button:
0 1 2 3 4 5 6 7 |
jQuery(document).ready(function($){ $('button.back').click(function(){ parent.history.back(); return false; }); }); |
Your html would be:
0 1 2 |
<button class="back">Back</button> |
Plus whatever css you want to use to style the button.
Read More