jQueryプラグインのメモ

jQueryプラグインを作る際のメモです。メモですので、お気になさらずに。

(function($) {
	$.fn.PluginName= function(options){

	var setting = $.extend({},options);
	
	
	this.each(function(){
	
	// Write Here
	
	});
	return this;
	};
})(jQuery);
タイトル
名前
URL
コメント

トラックバックURL