Forum Moderators: open
whats wrong?
electricocean
What is the html that intially establishes the iframe on the page? And what is the HTML for one of the misbehaving links?
If your domain name is in the code, just change it to example.com wherever it appears before you submit the post.
*example.org is supposed to open in a new window
electricocean
1. Don't use a special word, such as the actual name of an html element ('iframe'), to also name the element itself. It very well may be a protected word in some way and cause confusion when the browser's rendering code runs. Try almost anything else, such as name="main" or something like that.
2. Give the iframe both an ID attribute and a name attribute, and have them match.
So now we have <iframe id="main" name="main"> and target="main" for an attribute in the links.