Web design course - B Button.handleEvent() (Method) Event name JavaScript JScript
B Button.handleEvent() (Method) Event name JavaScript JScript N IE Opera DOM HTML Notes onKeyDown 1.2 + 3.0 + 4.0 + 4.0 + 3.0 + 4.0 + Warning onKeyPress 1.2 + 3.0 + 4.0 + 4.0 + 3.0 + 4.0 + Warning onKeyUp 1.2 + 3.0 + 4.0 + 4.0 + 3.0 + 4.0 + Warning onMouseDown 1.2 + 3.0 + 4.0 + 4.0 + 3.0 + 4.0 + Warning onMouseMove 1.2 + 3.0 + 4.0 + 4.0 + 4.0 + Warning onMouseOut 1.1 + 3.0 + 3.0 + 4.0 + 3.0 + 4.0 + Warning onMouseOver 1.0 + 3.0 + 2.0 + 4.0 + 3.0 + 4.0 + Warning onMouseUp 1.2 + 3.0 + 4.0 + 4.0 + 3.0 + 4.0 + Warning onRowEnter 3.0 + 4.0 + - onRowExit 3.0 + 4.0 + - Inheritance chain: Element object, Input object, Node object Button.handleEvent() (Method) Passes an event to the appropriate handler for this object. Availability: JavaScript 1.2 Netscape 4.0 Property/method value type: undefined JavaScript syntax: N myResetButton.handleEvent (anEvent) Argument list: anEvent An event to be handled by this object This applies to Netscape prior to version 6.0. From that release onwards, event management follows the guidelines in the DOM level 3 event specification. On receipt of a call to this method, the receiving object will look at its available set of event handler functions and pass the event to an appropriately mapped handler function. It is essentially an event dispatcher that is granular down to the object level. The argument value is an Eventobject that contains information about the event. See also: handleEvent()