I\'m using the below selector to get all the form inputs that are pre-populated with a value.
$(\'input[value!=\"\"]\');
This works great a
value is not an attribute of select tag.
value
select
So you need to try:
var emptySelect = $('select').filter(function() { return $.trim( $(this).val() ) == ''; });