jquery select option with empty value code example
Example: jquery select input with empty value
$('input:text').filter(function() { return $(this).val() == ""; });
$('input:text').filter(function() { return $(this).val() == ""; });