button onclick="checkForm();"
, где checkForm() должна возвращать "return false", если поля не заполненыfunction checkForm() {
$('.checkText').each(function(i,elem) {
if ($(this).val().length == 0) {
return false;
}
});
}
function checkForm() {
var isValid = true;
$('.checkText').each(function(i,elem) {
if ($(this).val().length == 0) {
isValid = false
}
});
return isValid;
}