Best way to find “next” form input element in jQuery?

kudos,

What about using .index?

e.g $(':input:eq(' + ($(':input').index(this) + 1) + ')');

Leave a Comment