I created a website using 5 iframes. In one of those iframes, there is a back button that uses simple javascript. <a href="javascript:history.back()">« Go back</a>
Everything seems to work fine with IE but when I test my website in Safari this Back button acts like it is using window.history.go(-1).
Any ideas to fix this issue? I also tried javascript: self.history.go(-1) but had no luck.
Thank you in advance for your help.