This was the most suited topic i could find for this question.......
Im using an iframe in a site im making in the main page i already know how to navigate the iframe from the main page. But my problem is trying navigate the iframe from within itself.
I use the code normally used but when the link is clicked in the iframe it doesn't always navigate to the specified page sometime's it just reloads the current page.
Here is an example of code i use to navigate iframe from within itself:
Code:
<a href="#" OnClick="parent['Main'].location.href = '../tuts.html'">Back to tutorials</a>
Main is the name= attribute for the iframe.
EDIT: Solved, silly me should of just tryed changing page the normal way seen as documents referenced inside the iframe will be loaded into the iframe like a normal html document.