I have an HTML file that contain iframe, say (called a.html):
<body>
<iframe width="430" height="220" frameborder="0"
src="http://www.et.co.il/jsp/callIframe.jsf">
</iframe>
</body>
In callIframe.jsf file there is a link.
when a user press this link i want that the link will open in a new window.
if i leave it like that, it opens inside the iframe…
I can not change a.html file. i can do changes inside the jsf only.
I used Java Scirpt.
I used the method window.open(URL,name,specs,replace).
This method can be found here