The blur event is triggered when a menu item loses focus.
You can use this event to track which item has lost focus.
An item can lose focus through keyboard commands, such as when the Tab key is pressed,
or when a user clicks elsewhere on the page.
Syntax
$(function () {
// Set blur event handler function
$(".selector").wijmenu({
blur : function (e, data) {
}
});
});
blur = function (
: jQuery.Event,
: IBlurEventArgs
) { };
Parameters
- e
- Standard jQuery event object
- data
- Information about an event
See Also