RadioButton.handleEvent() (Method)

Pass an event to the appropriate handler for this object.

Availability:

JavaScript - 1.2
Netscape - 4.0
Property/method value type:undefined
JavaScript syntax:NmyRadioButton.handleEvent(anEvent)
Argument list:anEventAn event to be handled by this object

This applies to Netscape Navigator 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 Event object that contains information about the event.

See also:handleEvent(), RadioButton object