faqts : Computers : Programming : Languages : JavaScript : Links

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

1 of 2 people (50%) answered Yes
Recently 1 of 2 people (50%) answered Yes

Entry

How can I dynamically set a link according to image source

Jul 16th, 2003 08:18
Klaus Bolwin, Scott,


image = document.getElementsByTagName("img");
anchor = document.getElementsByTagName("a");
anchor[0].href = image[0].src;