[jQuery] Get jQuery object from collection
I have collection: var collection = $(input);
var i = 3;
Is there easier way to get third jquery object from collection.
Currently i'm using method like
$(collection.get(i)) or $(collection[i])
But i think something like this could be more comfort:
example: collection.get(i).addClass('blah');