Skip to content

Instantly share code, notes, and snippets.

@DanielRapp
Created April 9, 2011 13:17
Show Gist options
  • Save DanielRapp/911395 to your computer and use it in GitHub Desktop.
Save DanielRapp/911395 to your computer and use it in GitHub Desktop.
(function($){
$.fn.foo = function(options) {
options = $.extend({}, $.fn.foo.defaults, options);
return this.each(function() {
// Gör saker här
});
};
$.fn.foo.defaults = {
'foo': 'bar'
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment