Skip to content

Instantly share code, notes, and snippets.

@etaque
Created March 22, 2010 07:54
Show Gist options
  • Save etaque/339882 to your computer and use it in GitHub Desktop.
Save etaque/339882 to your computer and use it in GitHub Desktop.
(function($) {
$.fn.myPlugin = function(settings) {
var config = {'foo': 'bar'};
if (settings) $.extend(config, settings);
this.each(function() {
// element-specific code here
});
return this;
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment