Hey all, I'm wrestling my way thru setting up a page (html) which includes an iframe, but i want the links that are WITHIN the iframe to open up in a new window (as in target_blank for the usual links). How can I do this? cheers, Todd
If the page being displayed in the iFrame are external, then you have no control over the links. If they are pages of your own creation, then it should work via <a href="http://URL" target="_blank">Link Text</a> just like it would on any other page.