I have 3 textboxes, all with the same id\'s that I process into ASP by bringing it into a controller array
I have a link that adds an unlimited number of textboxes b
@Eli answers exactly matches for you. If you want to read all the Text-boxes then you can use the following method.
$('input[type=text]').each(function () { $(this).change(function () { alert($(this).val()); $(this).focus(); }); });