Forum Moderators: open

Message Too Old, No Replies

links and iframes?!

how do i link to iframes?

         

cmacma1

12:21 pm on Oct 14, 2005 (gmt 0)



Hello all...please help!
I will try here to explain what I'm after! I will use only one of four links as an example.

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]

tedster

4:14 pm on Oct 14, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hello cmacma1, and welcome to the forums.

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.