Created
July 30, 2014 04:25
-
-
Save dstyle0210/788b8793ef953a6a08cf to your computer and use it in GitHub Desktop.
this.idx을 적용하는 메소드.
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 Extend addIdx : dstyle | |
| //each가 가능한 오브젝트에 .idx 라는 값을 넣는다. 이건 자신의 인덱스 순서. | |
| (function($){$.fn.addIdx = function(s){var s=(!s)?"idx":s;$(this).each(function(n,m){m[s] = n;});return this;};})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment