Can someone please tell me what the heck is wrong with my code here on line
59 and 60. i get an error that says object expected and I have NO
understanding why. There must be something im overlooking and its really
irritating because i know how simple this should.
=============== =============== =============== =============== =============== =
======
<HTML>
<HEAD>
<TITLE>MENU</TITLE>
<SPRIPT LANGUAGE = "JavaScript ">
<!--
if (document.image s) {
img1on = new Image();
img1on.src = "buttons/button_2_up.gif ";
img2on = new Image();
img2on.src = "buttons/button_4_up.gif ";
img3on = new Image();
img3on.src = "buttons/button_6_up.gif ";
img4on = new Image();
img4on.src = "buttons/button_8_up.gif ";
img1off = new Image();
img1off.src = "buttons/button_2_down.g if";
img2off = new Image();
img2off.src = "buttons/button_4_down.g if";
img3off = new Image();
img3off.src = "buttons/button_6_down.g if";
img4off = new Image();
img4off.src = "buttons/button_8_down.g if";
}
function imgOn(imgName) {
if (document.image s) {
document[imgName].src = eval(imgName + "on.src");
}
}
function imgOff(imgName) {
if (document.image s) {
document[imgName].src = eval(imgName + "off.src");
}
}
//-->
</SCRIPT>
</HEAD>
<BODY>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="135">
<TR><IMG SRC="buttons\lo go.gif" width="135" heigth="117" border="0"></TR>
<TR><IMG SRC="buttons\me nu.gif" border="0"></TR>
<TR><IMG SRC="buttons\bu tton_1_down.gif " border="0"></TR>
<TR><A href = "products.h tml" target="main"
onMouseOver = "imgOn('img 1')" // this is the
line with the error!!!
onMouseOut = "imgOff('img1') "> // this one
too
<IMG NAME = "img1" border=0 height=27 width=128
src="buttons\bu tton_2_down.gif "></A></TR>
<TR><IMG SRC="buttons\bu tton_3_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_4_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_5_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_6_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_7_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_8_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_9_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_10_down.gi f" border="0"></TR>
</BODY>
</TABLE>
</HTML>
59 and 60. i get an error that says object expected and I have NO
understanding why. There must be something im overlooking and its really
irritating because i know how simple this should.
=============== =============== =============== =============== =============== =
======
<HTML>
<HEAD>
<TITLE>MENU</TITLE>
<SPRIPT LANGUAGE = "JavaScript ">
<!--
if (document.image s) {
img1on = new Image();
img1on.src = "buttons/button_2_up.gif ";
img2on = new Image();
img2on.src = "buttons/button_4_up.gif ";
img3on = new Image();
img3on.src = "buttons/button_6_up.gif ";
img4on = new Image();
img4on.src = "buttons/button_8_up.gif ";
img1off = new Image();
img1off.src = "buttons/button_2_down.g if";
img2off = new Image();
img2off.src = "buttons/button_4_down.g if";
img3off = new Image();
img3off.src = "buttons/button_6_down.g if";
img4off = new Image();
img4off.src = "buttons/button_8_down.g if";
}
function imgOn(imgName) {
if (document.image s) {
document[imgName].src = eval(imgName + "on.src");
}
}
function imgOff(imgName) {
if (document.image s) {
document[imgName].src = eval(imgName + "off.src");
}
}
//-->
</SCRIPT>
</HEAD>
<BODY>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="135">
<TR><IMG SRC="buttons\lo go.gif" width="135" heigth="117" border="0"></TR>
<TR><IMG SRC="buttons\me nu.gif" border="0"></TR>
<TR><IMG SRC="buttons\bu tton_1_down.gif " border="0"></TR>
<TR><A href = "products.h tml" target="main"
onMouseOver = "imgOn('img 1')" // this is the
line with the error!!!
onMouseOut = "imgOff('img1') "> // this one
too
<IMG NAME = "img1" border=0 height=27 width=128
src="buttons\bu tton_2_down.gif "></A></TR>
<TR><IMG SRC="buttons\bu tton_3_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_4_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_5_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_6_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_7_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_8_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_9_down.gif " border="0"></TR>
<TR><IMG SRC="buttons\bu tton_10_down.gi f" border="0"></TR>
</BODY>
</TABLE>
</HTML>
Comment