Gurl1982
Computer
- Oct 25, 2001
- 10
Please i need to know very fast if u can help, can u see any problems with this bit of JavaScript code:<Script>
<!--
//Two variables created below using two images
picture1up=new Image; picture1up.src="weddings.jpg";
picture1down=new Image; picture1down.src="baby.jpg";
//Two functions follow
//Function 1 is called MouseOverRoutine
function MouseOverRoutine(image1)
{
if(image1=="picture1"
{document.picture1.src=picture1down.src;}
}
//Function 2 is called MouseOutRoutine
function MouseOutRoutine(image1)
{
if(image1=="picture1"
{document.picture1.src=picture1up.src;}
}
//-->
</script>
When i move over the image it says 'document.picture1' is not an object
Please can u help?
Regards
<!--
//Two variables created below using two images
picture1up=new Image; picture1up.src="weddings.jpg";
picture1down=new Image; picture1down.src="baby.jpg";
//Two functions follow
//Function 1 is called MouseOverRoutine
function MouseOverRoutine(image1)
{
if(image1=="picture1"
{document.picture1.src=picture1down.src;}
}
//Function 2 is called MouseOutRoutine
function MouseOutRoutine(image1)
{
if(image1=="picture1"
{document.picture1.src=picture1up.src;}
}
//-->
</script>
When i move over the image it says 'document.picture1' is not an object
Please can u help?
Regards