Wijmo UI for the Web
blur Event
wijmo.menu.wijmenu Namespace > options type : blur Event
Standard jQuery event object
Information about an event
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 ( 
   e : jQuery.Event,
   data : IBlurEventArgs
) { };

Parameters

e
Standard jQuery event object
data
Information about an event
See Also

Reference

options type
wijmenu jQuery Widget