Skip to content

Instantly share code, notes, and snippets.

@keopx
Forked from sqndr/example.jquery.js
Created July 16, 2014 10:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keopx/4ff39d43cff1498a483a to your computer and use it in GitHub Desktop.
Save keopx/4ff39d43cff1498a483a to your computer and use it in GitHub Desktop.
(function($){
$.fn.extend({
example: function(options) {
var defaults = {
color: '#000000',
}
var options = $.extend(defaults, options);
return this.each(function(){
});
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment