michaelp0730
1/19/2015 - 6:18 PM

jQuery Plugin Skeleton.js

(function ($) {
	$.fn.pluginName = function () {
		// plugin code
		
		return this.each(function () {
			// do something to each item
		});
	}
})(jQuery);