Created
December 23, 2011 15:12
-
-
Save Ahrengot/1514443 to your computer and use it in GitHub Desktop.
jQuery Plugin boilerplate
This file contains 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
(function($) { | |
$.fn.pluginName = function(options) { | |
var defaultOptions = { | |
option1: 'ahrengot', | |
option2: true, | |
option3: false | |
} | |
var options = $.extend(defaultOptions, options); | |
// iterate each matched DOM element | |
return this.each(function() { | |
console.log('pluginName inited on element: ', $(this)); | |
}); | |
} | |
})(jQuery) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment