Wijmo UI for the Web
expanded Event
wijmo.splitter.wijsplitter Namespace > options type : expanded Event
Standard jQuery event object
Gets or sets the javascript function name to be called when panel1 is expanded by clicking the collapse/expand image.
Syntax
$(function () {
    // Set expanded event handler function
    $(".selector").wijsplitter({
        expanded : function (e) {
     
        }
    });
});
expanded = function ( 
   e : jQuery.Event
) { };

Parameters

e
Standard jQuery event object
Example
Supply a callback function to handle the expanded event:
$("#element").wijsplitter({ expanded: function () { } });
Bind to the event by type:
$("#element").bind("wijsplitterexpanded", function () { });
See Also

Reference

options type
wijsplitter jQuery Widget