Created
July 11, 2012 00:35
-
-
Save s-hiroshi/3087150 to your computer and use it in GitHub Desktop.
jQuery > utility halfway
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
| jQuery(function ($) { | |
| // 拡張用の名前空間 | |
| var Util = {}; | |
| // jQueryの拡張 | |
| jQuery.extend({'util': Util}); | |
| // 静的メソッドの追加 | |
| Util.hoge = function () { | |
| }; | |
| // その他の処理 | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment