var empty = true; $('input[type="text"]').each(function() { if ($(this).val() != "") { empty = false; return false; } });