I have the following which iterates a function across all textboxes (type=”text”):
$('input[type="text"]').each(function () {//blah};)
How do I specify the selector so it iterates that function across all textboxes and textareas on the page?
Something like the following?
$('input[type="text" || type="textarea"]').each(function () {//blah});
input doesn’t have a type “textarea”. There is a separate textarea element so you would use