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>
javascript:window.history.back()as window refers to the top level of the DOM hierarchy in JS. – AlexW Oct 19 '11 at 12:48