Skip to content

Instantly share code, notes, and snippets.

@osben
Created May 25, 2016 16:33
Show Gist options
  • Save osben/84dd4cfe1e7571cc0b55c501e7b462d0 to your computer and use it in GitHub Desktop.
Save osben/84dd4cfe1e7571cc0b55c501e7b462d0 to your computer and use it in GitHub Desktop.
Узнаем index элемента на уровне списка
$.fn.getIndex = function(){
var $p=$(this).parent().children();
return $p.index(this);
}
/*
// DEMO
ul
li
li
li.active
li
li
$('ul li.active').getIndex() // return 2
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment