Skip to content

Instantly share code, notes, and snippets.

@bdbch
Last active August 29, 2015 14:22
Show Gist options
  • Save bdbch/f5f456d28d8ea40a3a54 to your computer and use it in GitHub Desktop.
Save bdbch/f5f456d28d8ea40a3a54 to your computer and use it in GitHub Desktop.
jQuery Plugin Template
/**
*
* pluginName
* Author: Your Name
* Company: Your Company
* Github: Your Github Link
* Version: 1.0
* License: License Title
*
**/
(function ($) {
$.fn.pluginName = function(options) {
settings = {
setting: true
};
$.extend(settings, options);
init = function() {
console.log('Your Plugin is ready!');
};
init();
};
}( jQuery ));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment