Skip to content

Instantly share code, notes, and snippets.

@wrongkitchen
Forked from Ahrengot/jq-plugin-boilerplate.js
Created November 6, 2012 11:19
Show Gist options
  • Save wrongkitchen/4024114 to your computer and use it in GitHub Desktop.
Save wrongkitchen/4024114 to your computer and use it in GitHub Desktop.
jQuery: Plugin Template
(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