$(function () { // Set expanded event handler function $(".selector").wijsplitter({ expanded : function (e) { } }); });
expanded = function ( e : jQuery.Event ) { };
Parameters
- e
- Standard jQuery event object
$(function () { // Set expanded event handler function $(".selector").wijsplitter({ expanded : function (e) { } }); });
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 () { });