Skip to content

Instantly share code, notes, and snippets.

@Boztown
Created May 4, 2012 22:03
Show Gist options
  • Save Boztown/2598018 to your computer and use it in GitHub Desktop.
Save Boztown/2598018 to your computer and use it in GitHub Desktop.
jQuery: Plugin Skeleton
(function($){
$.fn.extend({
pluginname: function(options) {
this.defaultOptions = {};
var settings = $.extend({}, this.defaultOptions, options);
return this.each(function() {
var $this = $(this);
});
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment