Skip to content

Instantly share code, notes, and snippets.

@sanglt
Created June 9, 2010 13:04
Show Gist options
  • Select an option

  • Save sanglt/431444 to your computer and use it in GitHub Desktop.

Select an option

Save sanglt/431444 to your computer and use it in GitHub Desktop.
/**
* Create basic jQuery plugin
*/
(function ($) {
$.fn.myPlugin = function (options) {
return this.each(function () {
// Do stuff
});
}
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment