wijmo.splitter.wijsplitter Namespace > options type : expanded Event |
Javascript (Usage) | |
---|---|
$(function () { // Set expanded event handler function $(".selector").wijsplitter({ expanded : function (e) { } }); }); |
Javascript (Specification) | |
---|---|
expanded = function ( e : jQuery.Event ) { }; |
Supply a callback function to handle the expanded event: $("#element").wijsplitter({ expanded: function () { } }); Bind to the event by type: $("#element").bind("wijsplitterexpanded", function () { });