I have a web page with an iFrame(actually an object tag) inside it:
<div class="outer">
<table class="inner" cellspacing="10">
<tr>
<td align="center"><object data="http://dl.v4m.mobi/redirect.php" style="width: 22em; height: 34em;" type="text/html"></object></td>
</tr>
</table>
</div>
Now the file inside the object tag frame has a download link: Here is that part contained within the 'http://dl.v4m.mobi/redirect.php' file:
<li class="menu">
<a href="win/e-phone_3.7.11.6.msi" target="_self"><img src="thumbs/installer.png" />
<span class="name">Windows Desktop</span>
<span class="comment"></span>
<span class="arrow"></span>
</a>
</li>
The problem: When you click on that link:
<a href="win/e-phone_3.7.11.6.msi" target="_self">
the browser exits the object frame/file and directs me back to the page containing the object file. So instead of seeing the object frame, you see a blank grey background contained in the page shown at the top of all my code here. I do not want to navigate out of the object frame when clicking on a link inside it. How do I do that? Note: I tried using target="_self", _top; _parent and all the others, but it does not work.
Thank You
