私はフォームコレクションと5つの入力タイプ=「テキスト」を異なるIDと1つの送信ボタンで持っています
<form id="frmSubmitSupplier" method="post">
<input type="text" id="txtCompanyName" name="companyname" />
<input type="text" id="txtFirstName" name="firstname" />
<input type="text" id="txtLastName" name="lastname" />
<input type="text" id="txtAdd1" name="address1" />
<input type="text" id="txtCity" name="city" />
<input id="btnSupplierSave" type="submit" value="Save"/>
</form>
jqueryコードで、すべての空白のテキストボックスのif条件を入れたい
$('#frmSubmitSupplier').live('submit', function (e) {
i want to check here that if all textboxes are empty then any alert but in only single line.. how to check
});