Hello,
I have an iframe that contains adsense referal button
The only problem I have is that when the referal button is clicked, the page tries to open up within the IFRAME, ideally I would like it to open up in the parent window.
| SitePoint Sponsor |



Hello,
I have an iframe that contains adsense referal button
The only problem I have is that when the referal button is clicked, the page tries to open up within the IFRAME, ideally I would like it to open up in the parent window.

Is the adsense referall button hosted by you or from an external site. If by you you simply use:
or:Code:<a href="#" target="_parent"><img src="referall_button.gif" alt="referall button" width="156" height="59" border="0"></a>
If from external site think of another method to include without the framsCode:<a href="#" target="_top"><img src="referall_button.gif" alt="referall button" width="156" height="59" border="0"></a>



Adding
inside the iframe src page was good enough to solve itCode:<head><base target="_top"></head>![]()
Bookmarks