Maybe some of you use the following approach to create “back” links:
<a href="#" onclick="javascript:history.back();">back</a>
I used to do it this way until it turns out that this is not working under Firefox.
Fortunately I found the solution while I was reading an article posted at Code Project website. The back button there was working even in Firefox. The code used is really simple:
<a href="javascript:history.back();">back</a>
Enjoy!
back, back link, Firefox javascript







This is that I was looking for, it works very well
Thank you very much!!