js check if all input values are not null code example
Example: hhow to check input is null in html using js
function required(inputtx)
{
if (inputtx.value.length == 0)
{
alert("message");
return false;
}
return true;
}