View Full Version : change the link
alaios
08-12-2002, 05:03 PM
we can change an icon using this
document.images.pic1.src=........
can i do the same to a link ?
this does not work why?
document.links.temp.href=b.htm;
ShriekForth
08-12-2002, 05:54 PM
"links" will be an array of links on the page. You can reference them if you know what link number it is on the page, or use the new DOM to get at the link
document.getElementById('temp').href="b.htm";
Yours would work if you reference all
document.all.temp.href=b.htm;
The first will work in any browser that supports the DOM, Mozilla, NS6, IE 5.5+, the second only IE.
ShriekForth
alaios
08-12-2002, 09:49 PM
opera and ie 4 does not support dom?
ShriekForth
08-12-2002, 11:57 PM
IE 4 does not. I don't know opera versions well enough to say if it does or not.
ShriekForth
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.