|
Hello all,
I'm using an init function to randomly rotate an image every time the page is loaded. This works in IE but not in firefox. Any ideas? The code is below. Thanks in advance for your help.
function init() {
if(document.images['navimage'] ) {
var randomize = Math.round(Math.random()*29);
navimage.src = "/images/nav/img_" + randomize + ".jpg";
}
|