I see some code like this.
I understand that on a mouseOut for that Anchor it calls the function SetTimer(), then it calls the Intrinsic function mouseOut(). But where does iButtonIdx come from? Are there attributes sent over from the onmouseout in the Anchor? If there are, where can I get a list of what information is sent from the event in the HTML code to the function?
Thanks much.
-Albion
Code:
<SCRIPT language="javascript">
function mouseOut(iButtonIdx) {
Blah ... Blah
}
function setTimer() {
Blah ... Blah
}
</SCRIPT>
<BODY>
<A HREF="blah.html" onmouseout="SetTimer();">
</BODY>
I understand that on a mouseOut for that Anchor it calls the function SetTimer(), then it calls the Intrinsic function mouseOut(). But where does iButtonIdx come from? Are there attributes sent over from the onmouseout in the Anchor? If there are, where can I get a list of what information is sent from the event in the HTML code to the function?
Thanks much.
-Albion