Skip to content

Instantly share code, notes, and snippets.

@sdvg
Created April 9, 2012 18:58
Show Gist options
  • Save sdvg/2345533 to your computer and use it in GitHub Desktop.
Save sdvg/2345533 to your computer and use it in GitHub Desktop.
jquery extension structure
(function($){
$.fn.extend({
extensionName: function(options) {
//Settings list and the default values
var defaults = {
};
var options = $.extend(defaults, options);
//code
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment