-
-
Save carloscabo/5757581 to your computer and use it in GitHub Desktop.
Generic JQuery plugin template
This file contains hidden or 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.plugin = function() { | |
return this.each(function() { | |
var $this = $( this ); | |
if ( !$this.data('plugin') ) { | |
$this.data( 'plugin', new Plugin(this) ); | |
} | |
}); | |
} | |
Plugin = function() { ... } | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment