Skip to content

Instantly share code, notes, and snippets.

@dstyle0210
Created July 30, 2014 04:25
Show Gist options
  • Select an option

  • Save dstyle0210/788b8793ef953a6a08cf to your computer and use it in GitHub Desktop.

Select an option

Save dstyle0210/788b8793ef953a6a08cf to your computer and use it in GitHub Desktop.
this.idx을 적용하는 메소드.
//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