Skip to content

Instantly share code, notes, and snippets.

@mostlyfine
Created December 7, 2011 06:39
Show Gist options
  • Select an option

  • Save mostlyfine/1441740 to your computer and use it in GitHub Desktop.

Select an option

Save mostlyfine/1441740 to your computer and use it in GitHub Desktop.
対象エレメントに対して作動する
//
// plugin呼び出し
//
$(function() {
$("#message").sample1("hello world").css("color","red");
});
//
// plugin本体
//
(function($) {
var name_space = "sample1";
$.fn[name_space] = function(message) {
this.text(message);
return this;
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment