navigator_event_handler

Client side event handler for the any of the navigational controls.

Note: This is a prototype, not a function. You should provide a function that matches this prototype if you wish to handle the corresponding event on the client side. The prototype provides information about the arguments and return value of the function you provide.

Syntax
JavaScript
 navigator_event_handler(e, eventInfo)

Parameters

e
DOM event object.
eventInfo
A NavigatorEventInfo object containing information related to the most recent menu event.

Return Value

Returns false to prevent the default action, returns null or true to continue on the default action.

Remarks

You should provide this function if you want to use client side event handling. See handling client side event for more details.

See Also