I want to put a "Go Back" link in my website inner pages. the code which I can simply use is :
<script>document.write('<a href="#" onClick="history.go(-1); return:false;"></a>')</script>
but it doesn't show the url of the previous page when someone hovers on it, and also it won't work if there is no previous page(like when you open a link in a new tab). So I need a code which only appears when there is a previous page and also shows the url. I appreciate if anybody knows a good way ..