Forum Moderators: open

Message Too Old, No Replies

How can you click a link in an iframe?

         

vaxop

5:51 am on Apr 28, 2004 (gmt 0)

10+ Year Member



Anyone know? 

tombola

6:03 am on Apr 28, 2004 (gmt 0)

10+ Year Member



What do you mean?
A link in an iframe is the same as a link on a "normal" page:
<a href="http://www.example.com">Linktext here</a>

vaxop

5:21 pm on Apr 28, 2004 (gmt 0)

10+ Year Member



yea, but using DOM/dhtml, how can you click a link in there?

IE in a normal page, youd use somehting like
document.links[1].click()

but how can you do it for a link in an iframe?

Rambo Tribble

10:36 pm on Apr 28, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I believe, if you name your iframe (as in <iframe name="iframeName">, something like this should work:

document.iframeName.links[1].click();