Ребята подскажите, что я не так делаю:
function checkForm(form)
{
if (document.getElementById("empt").value == '')
{
alert ('Заполните все поля');
return false;
}
}
<form method="post" onsubmit="return checkForm(this)" action="/" >
<input type="text" id="empt" name="test">
<input type="submit" value="Отправить">
</form>