Skip to content

Instantly share code, notes, and snippets.

@philpalmieri
Last active January 25, 2018 13:42
Show Gist options
  • Save philpalmieri/e43eff55c31ab6368fcd to your computer and use it in GitHub Desktop.
Save philpalmieri/e43eff55c31ab6368fcd to your computer and use it in GitHub Desktop.
jQuery Plugin Skeleton
// JQuery
(function(root, $) {
/**
* Doc Block
*/
function ClassName() {
// Methods and variables
}
// register namespace
$.extend(true, root, {
NameSpace : {
ClassName : ClassName
}
});
})(this, jQuery); // this === window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment