Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

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

Why won't N6 recognize event.x

Status
Not open for further replies.

roblasch

Programmer
Dec 30, 2000
168
US
I am having a terrible time with this and I don't understand it. IE is fine with it, and N6 will recognize e.type as "onMouseDown". Any insight?

function fun2(e) {
alert ("The left position of the mouse is: " +e.x);
return false;
}




<body bgcolor=&quot;#d3d3d3&quot; onMouseDown=&quot;fun2(event)&quot;;return=&quot;false&quot;>
 
because netscape handles events differently than IE... it creates an event object... you can probably find out about it at devedge.netscape.com adam@aauser.com
 
that is where i got the code, from one of there own examples
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top