function imageload()
{
img = //arbitrary image file;
obj = document.getElementById("Results_myImg");
obj.src = img;
}
The problem here, is that this method will not work under IE for some reason. I've been scratching my head for a day now, and it seems like the simplest of code. Note, this works perfectly in firefox.
Any idea's why IE wouldn't accept this?
--there are 10 types of people in this world. those who know binary, and those who don't.--
{
img = //arbitrary image file;
obj = document.getElementById("Results_myImg");
obj.src = img;
}
The problem here, is that this method will not work under IE for some reason. I've been scratching my head for a day now, and it seems like the simplest of code. Note, this works perfectly in firefox.
Any idea's why IE wouldn't accept this?
--there are 10 types of people in this world. those who know binary, and those who don't.--