Open Iframe link in same window

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:

<a href="#" target="_parent"><img src="referall_button.gif" alt="referall button" width="156" height="59" border="0"></a>

or:

<a href="#" target="_top"><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 frams

Adding

<head><base target="_top"></head>

inside the iframe src page was good enough to solve it :slight_smile: