views:

40

answers:

1

Hello, I have links within an iframe that are external, and I would like them to open in the same window, leaving the iframe. Thanks!

+6  A: 

You want to specify target="_top" like so:

<a href="http://example.com/" target="_top">Click me!</a>
Dean Harding
Ah thankyou!! So easy.
John A