/ Published in: jQuery
A quick template for extending javascript/jQuery functionality
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
(function($) { $.extend($.ui.tabs.prototype, { _tabify: function(init) { //Do stuff here //We extended the _tabify function of jQuery's tabs } }); })(jQuery);