Tuesday, 15 January 2013

html - onclick Iframe link - this link open in new tab / window -



html - onclick Iframe link - this link open in new tab / window -

i have iframe -

<iframe src="http://mp3yoyo.com/ads.php" scrolling="no" width="500" height="80" frameborder="0"></iframe>

but when click on link of ads open in same window.

i want open links of iframe in new window.

i have seek adding target="_blank" , <base target="_blank" /> not opening link in new window please help me.

this might help: http://www.webhostingtalk.com/showthread.php?t=678138

in general, should telling links open in new windows (in anchor tag). can command action of anchor tag in css, don't think iframes back upwards css divs (as iframe isn't part of css 3 knowledge).

if utilize div instead of iframe, according css 3.0, can give div class or id , command anchor tag in css, so:

<div id="mydiv> <a href="whatever.html">stuff</a> </div>

and in css file:

#mydiv a{ target-name:new; target-new:tab; }

i don't think supported yet, however; largely theoretical.

html css iframe

No comments:

Post a Comment