When using javascript:parent.location.href in an IFrame to change the parent window, IE briefly changes the IFrame content to list the url that the parent is changing to. Firefox, chrome, and opera just change the parent window.
Is there a way to make IE skip showing the url in the IFrame and just change the parent?
[edit]
here is the sample code to duplicate it.
Iframe page:
<iframe id="finder" name="finder" src="content.html" scrolling="no" height="620" width="620" style="border:1px #c0c0c0 solid;"></iframe>
Content page:
<a href='javascript:parent.location.href="http://www.google.com"'>test link</a>