var items = $(".myClass");
The above code returns the number of elements when used to select all elements. How can I select a specific element, for example the second? Neither items(2) nor items[2] work.
jquery jquery-selectors indexing
Fuxi
source share