Skip to content

Instantly share code, notes, and snippets.

@nanasess
Last active August 29, 2015 14:17
Show Gist options
  • Save nanasess/dd4e5e31054ad7c022ba to your computer and use it in GitHub Desktop.
Save nanasess/dd4e5e31054ad7c022ba to your computer and use it in GitHub Desktop.
jQueryプラグインのスケルトン
/*
* jQuery plugin skelton.
*/
;(function($, window, undefined) {
$.fn.example = function(options) {
return this.each(function() {
var o;
if (options) {
o = $.fn.extend({}, $.fn.example.defaults, options);
} else {
o = $.fn.example.defaults;
}
// nothing
return this;
});
};
$.fn.example.defaults = {};
})(jQuery, window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment