Created
January 30, 2012 22:22
-
-
Save phette23/1707177 to your computer and use it in GitHub Desktop.
jQuery Plugin Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($){ | |
$.fn.myPluginMethod = function() { | |
// keep it chainable, jQuery objects | |
// include multiple DOM elements | |
return this.each(function(){ | |
// do something | |
}); | |
}; | |
}(jQuery)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment