Jquery Не проходит валидация формы. Нужно чтобы сработал запрет на переход по клику?
$(".next").click(function(){
/*Получаем все инпуты*/
current_fs = $(this).parent();
next_fs = $(this).parent().next();
massinput=current_fs.find('input.required');
$.each(massinput, function (index, value){
if (value.value ==''){
value.style.color="red";
return false;
/**************************Нужно чтобы не срабатывал NEXT*************************/
}
return true
});
//Add Class Active
$("#progressbar li").eq($("fieldset").index(next_fs)).addClass("active");
//show the next fieldset
next_fs.show();
//hide the current fieldset with style
current_fs.animate({opacity: 0}, {
step: function(now) {
// for making fielset appear animation
opacity = 1 - now;
current_fs.css({
'display': 'none',
'position': 'relative'
});
next_fs.css({'opacity': opacity});
},
duration: 600
});
current_fs.index(current_fs)
});