/ Published in: jQuery
https://github.com/zenorocha/jquery-boilerplate/blob/master/jquery.boilerplate.min.js
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
;(function ( $, window, document, undefined ) { var pluginName = 'defaultPluginName', defaults = { propertyName: "value" }; function Plugin( element, options ) { this.element = element; this.options = $.extend( {}, defaults, options) ; this._defaults = defaults; this._name = pluginName; this.init(); } Plugin.prototype.init = function () { // code goes here }; $.fn[pluginName] = function ( options ) { return this.each(function () { if (!$.data(this, 'plugin_' + pluginName)) { $.data(this, 'plugin_' + pluginName, new Plugin( this, options )); } }); } })(jQuery, window, document);
URL: http://jqueryboilerplate.com/