Created
March 20, 2012 20:17
-
-
Save jonezy/2140860 to your computer and use it in GitHub Desktop.
jQuery plugin boilerplate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // jQuery Plugin Boilerplate | |
| // A boilerplate for jumpstarting jQuery plugins development | |
| // version 1.1, May 14th, 2011 | |
| // by Stefan Gabos | |
| (function($) { | |
| $.pluginName = function(element, options) { | |
| var plugin = this; | |
| plugin.settings = {} | |
| var $element = $(element), | |
| element = element; | |
| var defaults = { | |
| foo: 'bar', | |
| onFoo: function() {} | |
| } | |
| plugin.init = function() { | |
| plugin.settings = $.extend({}, defaults, options); | |
| // code goes here | |
| } | |
| plugin.foo_public_method = function() { | |
| // code goes here | |
| } | |
| var foo_private_method = function() { | |
| // code goes here | |
| } | |
| plugin.init(); | |
| } | |
| $.fn.pluginName = function(options) { | |
| return this.each(function() { | |
| if (undefined == $(this).data('pluginName')) { | |
| var plugin = new $.pluginName(this, options); | |
| $(this).data('pluginName', plugin); | |
| } | |
| }); | |
| } | |
| })(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment