Is there a way I can use a jQuery selector like :empty or :not(:checked) on an input/textarea/select element, or any other way I can return an object that is empty?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I'm not entirely clear, but I think you're looking for input controls that have no value entered by the user? There's no explicit selector/filter for that, but...

You can build a custom filter by using the .filter() function on your result set. Try something like:

$("input").filter(function (){
    return $(this).val() == '';
});
link|improve this answer
feedback

Not tested it but this should work too

$('input[value=""], select[option=""]')

as selector.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.