Skip to content

Instantly share code, notes, and snippets.

@firewalker06
Last active December 15, 2015 11:19
Show Gist options
  • Save firewalker06/5252162 to your computer and use it in GitHub Desktop.
Save firewalker06/5252162 to your computer and use it in GitHub Desktop.
jQuery Plugin starter
(function( $ ){
$.fn.pluginName = function( ) {
return this.each(function() {
// maintain chainability
});
};
})( jQuery );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment