Response title
This is preview!
$('[id*=mytextbox]')
$('input:text[id^=mytextbox]').each(function() {
if ($(this).attr('val') == "")
alert("Empty box - " + $(this).attr('id'));
});
alert('Size: ' + $('input:text[id*=txtReportsPersonCustomerPrice][value=]').size());
alert('Size: ' + $('input:text[id*=txtReportsPersonCustomerPrice]:not([value=])').size());
© 2013 jQuery Foundation
Sponsored by and others.