
Originally Posted by
okephoto
I have managed to get Iframe windows to work fairly well but Netscape seems to have a big problem with it. Will be contacting the affiliate company to see if they have objections to the test page. At any rate, have learned something new that may or may not be acceptable for the application.
iframes are only unsupported by Netscape 4. Netscape 6+ renders them fine. Here's a solution that will probably work for you:
HTML Code:
<iframe src="http://www.example.com/affiliate/" width="200" height="60">
<a href="http://www.example.com/affiliate/"
onclick="window.open(this.href, 'newWin', 'width=200, height=60');
return false;">
Link to affiliate
</a>
</iframe>
This way, the iframe will show in browsers that support it. In old browsers, users will see a link that opens in a new window. And for text-only browsers like Lynx, the link will open in the same window. There, everybody's happy!
Bookmarks