Could someone please explain why the following works in IE5, but not FF3?
Thanks in advance!
Thanks in advance!
Code:
function meRelease(id){
endnum = document.getElementById(id).value;
alert(endnum);
}
Code:
<td width="30%" id="1.1" value="1" onmouseover="checkHighlight(this.id)" onmousedown="meClick(this.id)" onmouseup="meRelease(this.id)"><div align="center">1</div></td>
Comment