Javascript Back Buttons

There are 3 Javascript Back Button types are shown below.


<form>
<input type="button" value="BACK" onClick="history.back()">
</form>


Back

<a href="javascript: onClick=history.back()">Back</a>



To do one with an image
<a href="javascript:void(history.back())"><img src="http://your_image_here"></a>