JavaScript Programmer’s Reference Layer.handleEvent() (Cedant web hosting) (Function) Pass an event
JavaScript Programmer’s Reference Layer.handleEvent() (Function) Pass an event to the appropriate handler for this object. JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: undefined JavaScript syntax: N myLayer.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. Warnings: . No longer supported in Netscape 6.0. See also: handleEvent(), Layer.routeEvent() Layer.hidden (Property) A deprecated property that indicates whether a layeris hidden or not. JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: JavaScript syntax: N Boolean primitive myLayer.hidden You should not use this property in new projects. If you encounter it in existing ones, if you have the time you should remove it and use the visibility property instead. 1300