Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations IDS on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Please i need to know very fast if 1

Status
Not open for further replies.

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=&quot;weddings.jpg&quot;;
picture1down=new Image; picture1down.src=&quot;baby.jpg&quot;;

//Two functions follow
//Function 1 is called MouseOverRoutine

function MouseOverRoutine(image1)
{
if(image1==&quot;picture1&quot;)
{document.picture1.src=picture1down.src;}
}

//Function 2 is called MouseOutRoutine

function MouseOutRoutine(image1)
{
if(image1==&quot;picture1&quot;)
{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

 
Replies continue below

Recommended for you

I'm into Java and not necessarily into JavaScript, but it seems to me that you haven't used a complete constructor. If you use a constructor that doesn't need any extra arguments, you still have to add empty brackets:
picture1up=new Image();
picture1up.src=&quot;weddings.jpg&quot;;
picture1down=new Image();
picture1down.src=&quot;baby.jpg&quot;;
...

Hope this solves your problem

P.S.: if it does,please vote for this post as being 'helpful'

Thanks, Cybex
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor