How to redirect page from iframe script
In some cases, we want to show our pages using iframe. we may also have links in frame. When we click on the link, the page which we want to show is loaded inside frame. But If we want to show it in a main page means we can do as follows.
Example
<iframe src=”anotherpage.html” mce_src=”anotherpage.html” height=”295″ width=”790″></iframe>
For example in anotherpage.html, we have the following data.
<div>
This is the page which is shown inside frame.
Click <a href=’sample.html’>here</a> to view page
</div>
The above code will reload sample.html inside frame. We can load it in main page by changing the above code as follows.
<div>
This is the page which is shown inside frame.
Click <a href=’#’ onClick=”parent.location.href=’sample.html’” >here</a> to view page
</div>
