Skip to content

Instantly share code, notes, and snippets.

@Ahrengot
Created December 23, 2011 15:12
Show Gist options
  • Save Ahrengot/1514443 to your computer and use it in GitHub Desktop.
Save Ahrengot/1514443 to your computer and use it in GitHub Desktop.
jQuery Plugin boilerplate
(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