Skip to content

Instantly share code, notes, and snippets.

@nissuk
Created February 19, 2011 19:14
Show Gist options
  • Save nissuk/835288 to your computer and use it in GitHub Desktop.
Save nissuk/835288 to your computer and use it in GitHub Desktop.
jQuery plugin simple template
/**
* jQuery x plugin
*/
(function($) {
var pluginName = "";
var plugin = function(options) {
var settings = $.extend({}, plugin.defaults, options);
return this.each(function() {
});
};
plugin.defaults = {
};
$.fn[pluginName] = plugin;
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment