$(function () { // Set sizing event handler function $(".selector").wijsplitter({ sizing : function (e) { } }); });
sizing = function ( e : jQuery.Event ) { };
Parameters
- e
- Standard jQuery event object
$(function () { // Set sizing event handler function $(".selector").wijsplitter({ sizing : function (e) { } }); });
sizing = function ( e : jQuery.Event ) { };
Supply a callback function to handle the sizing event: $("#element").wijsplitter({ sizing: function () { } }); Bind to the event by type: $("#element").bind("wijsplittersizing", function () { });