Mrbaseball34
Programmer
<html>
<title>
Junk
</title>
<head>
<script language=VBscript>
function vbMouseOver2(a)
a.style.backgroundcolor = "#e6e6e6"
end function
function vbMouseOut2(a)
a.style.backgroundcolor = "#f8f8f8"
end function
</script>
</head>
<body>
<table border=0 align=center width="560" cellpadding=1 cellspacing=1>
<tr id="tr100"
OnMouseOver="vbMouseOver2(tr100)"
OnMouseOut="vbMouseOut2(tr100)">
<td bgcolor="FF00EE">Just a stupid thing</td>
</tr>
</table>
</body>
</html>
I keep getting object expected errors on the OnMouseOver and OnMouseOut calls in the TR...
Can anyone help?
<title>
Junk
</title>
<head>
<script language=VBscript>
function vbMouseOver2(a)
a.style.backgroundcolor = "#e6e6e6"
end function
function vbMouseOut2(a)
a.style.backgroundcolor = "#f8f8f8"
end function
</script>
</head>
<body>
<table border=0 align=center width="560" cellpadding=1 cellspacing=1>
<tr id="tr100"
OnMouseOver="vbMouseOver2(tr100)"
OnMouseOut="vbMouseOut2(tr100)">
<td bgcolor="FF00EE">Just a stupid thing</td>
</tr>
</table>
</body>
</html>
I keep getting object expected errors on the OnMouseOver and OnMouseOut calls in the TR...
Can anyone help?