Forum Moderators: open
The link is 'work'
i want it to open in an iframe, below the link itself.
when open it will show further links, 'image 1, 2 & 3' [in the iframe]. I want these links to open as images in a second iframe, next to the first!
Any help would be fantastic!
[edited by: encyclo at 2:03 pm (utc) on Oct. 14, 2005]
[edit reason] no email sigs please [/edit]
Two steps - first, your html should set up all the iframes you will need to use and give them name and id attributes, even if their default is just a blank html page:
<iframe name=iframea id=iframea>
Then your anchor tag uses the name/id you assigned as a target attribute:
<a href="[url]" target="iframea">
Do this for each iframe you need.