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