If I apply an iFrame action on a page of my website and I make a hyperlink on another page to the page with the iFrame action than each time a new window is opened. Is it possible that the new page with iFrame appears in the same window of the page with the hyperlink ?
That doesn’t sound like it’s related to the iframe Action itself. Looking at the DVCproHD link, it appears that you have set the Target attribute of that link to _blank, which does open a new window. Do you control this page? Did you code these links yourself? If so, then the way around this is to change (or remove) the Target attribute from the link.
If the page is shown in an iframe, and you want to break out of the iframe with the link, then change the Target to _top or _parent. Either of those will break out of the iframe and replace the content of the window with the page referenced by the link. On a normal page loaded into the browser window directly, the _top or _parent will have no visible effect, because that’s the default.
Walter
On Sep 5, 2013, at 10:04 AM, Artivideo wrote:
If I apply an iFrame action on a page of my website and I make a hyperlink on another page to the page with the iFrame action than each time a new window is opened. Is it possible that the new page with iFrame appears in the same window of the page with the hyperlink ?