Hi there
I've been using a piece of code accross a number of my sites for a while that toggles displayed images by changing the src of an img tag. I assumed it would work fine with the embed tag too, but it seems it doesn't. Any ideas?
ps. Does anyone know any good javascript or dhtml forums?
I've been using a piece of code accross a number of my sites for a while that toggles displayed images by changing the src of an img tag. I assumed it would work fine with the embed tag too, but it seems it doesn't. Any ideas?
Code:
//on head:
function loadmov(moviename) {
document.embeds['movieid'].src = ("../path/"+ moviename);
focus();
}
//on icon:
onClick="loadmov('mymovie')"
ps. Does anyone know any good javascript or dhtml forums?