jquery select input with empty value

JavaScript
$('input:text').filter(function() { return $(this).val() == ""; });

Source

Also in JavaScript: