I am going through lessons of JavaScript about Event Handlers, while doing so I am starting very basic which is getElementById(). Below is my HTML and JavaScript Code. The following code has images tag also but I am new user to SO that's why they didn't allowed me to post them in the exact way. So consider src tags to be fully complaint.
<div class="considerVisiting">
<img src="images/bq-twitter" id="mainImage" alt="BeQRious Twitter">
</div>
and here is the JavaScript Code:
var myImage = document.getElementById("mainImage");
var imageArray = [images/1-btn, images/download-as-you-like];
var imageIndex = 0;
function changeImage() {
myImage.setAttribute("src",imageArray[imageIndex]);
imageIndex++;
if (imageIndex >= imageArray.length) {
imageIndex=0;
}
}
setInterval(changeImage, 5000);
This code will change the mainImage Picture every 5 seconds. But the problem I am facing is that when I run this script using FireBug in Mozilla it says:
> Error : myImage is Null
and nothing happens with regard to the script.
document.readyevent handler? Or tried putting the JS in ascriptblock at the foot of the page? So it's executed after the DOM is put together? – David Thomas Dec 14 '11 at 23:28imgelement (in your soruce) is anid? Internet Explorer has a bug where it will match on the name instead of the ID, but other browsers will correctly complain. – scunliffe Dec 14 '11 at 23:29