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

Parameters

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

Reference

options type
wijsplitter jQuery Widget