Posts by MuhMarigo • 24 points
2 posts
-
-1
votes2
answers200
views -
1
votes2
answers569
viewsA: How to activate event by clicking anywhere on the screen?
You can use the onblur input event, your code would look like this : $("#cpf").blur(function (){ if($("#cpf").val() == '') { $("#saida").html("Informe um CPF"); return false; }…