Reputation: 1263
How to select empty all 'input type="text"' elements with class name 'myTextbox"
example below only selects empty fields
var emptyfields = $("input[value=]");
Upvotes: 2
Views: 1916
Reputation: 625037
$(":text.myTextBox[value='']")...
Upvotes: 6