Input.handleEvent() (Method)

Pass an event to the appropriate handler for this object.

Availability:

JavaScript - 1.2
Netscape - 4.0
JavaScript syntax:NmyInputObject.handleEvent(anEvent)
Argument list:anEventAn event to be handled by this object

On receipt of a call to this method, the input 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 Event object that contains information about the event.

See also:handleEvent()