var items = $(".myClass");
The code above returns a number of items when used to select all elements. How can I select a specific element, for example the second one? Neither items(2) nor items[2] works.
Try this:
items.eq(2) // gets the third element as a jQuery object (zero-based index)