index not working
index not working
I have a div with the ID
boxes_container that has a number of children divs of class
boxes. One of them will have the class
active added by some server side code and I'd like to find the index of that. But my code doesn't seem to work.
- var $active = $('.boxes.active');
var idx = $('#boxes_container').index($active);