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