Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the solution for above scenario. It only happens in firefox when you open a iframe from the page which has the back button. Then when you click back it doesn't work. While googling I found mentioning self keyword explicitly as follow,

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

But it also didnt work.

share|improve this question
here you can find some trick – user973254 Oct 19 '11 at 12:35
try javascript:window.history.back() as window refers to the top level of the DOM hierarchy in JS. – AlexW Oct 19 '11 at 12:48
its also not working – Harshana Oct 20 '11 at 5:48

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.