The focus event is triggered either on mouse hover or
when the keyboard cursor keys are used for navigation.
In general, an item or element that has focus is highlighted in some way.
When an item or element has focus it is the first to receive keyboard-related events.
Syntax
$(function () {
// Set focus event handler function
$(".selector").wijmenu({
focus : function (e, data) {
}
});
});
focus = function (
: jQuery.Event,
: IFocusEventArgs
) { };
Parameters
- e
- Standard jQuery event object
- data
- Information about an event
See Also