javascript if input value is empty code example
Example: if input value is null do something
if(document.getElementById("question").value.length == 0)
{
alert("empty")
}
if(document.getElementById("question").value.length == 0)
{
alert("empty")
}