Created
December 7, 2011 06:39
-
-
Save mostlyfine/1441740 to your computer and use it in GitHub Desktop.
対象エレメントに対して作動する
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
| // | |
| // 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