SyntaxFix
Write A Post
Hire A Developer
Questions
In the jQuery world, if you want to select an object from a set of DOM elements, you should use eq().
Examples:
var button = $('button').eq(1);
or
var button = $('button:eq(1)');