JSFiddle - React, Tailwind, and code Playground

by Sergei

JavaScript

$("form").submit(function(event){
var error = false;
$(this).find("[type=text], textarea").each(function(){
if (!$(this).val().length) {
alert("Заполните пожалуйста все поля!");
$(this).focus();
error = true;
return false;
}
});