0
Como verifico se o Input de texto está vazio ou em branco??
??
2 Réponses
+ 1
se você está utilizando jQuery :
If ($("#seuinput").val() == "") { faz algo }
js puro:
If (document.getElementById("seuinput").value == "") { faz algo }
0
Resolvido, Obrigado :)