I\'m making a form. And on one input tag is an OnClick event handler, which is opening a popup, where you can choose some stuff, and then it autofi
input
OnClick
function validateForm() { var x = document.forms["myForm"]["test2"].value; if (x == "") { alert("Name missing!!"); return false; } }
Submit