/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
(function($){ $.fn.PLGUINNAME = function(options) { var defaults = { min: 300, max: 100 }; var options = $.extend(defaults, options); return this.each(function() { }); }; })(jQuery);