Posts by Adriano • 1 point
1 post
-
-3
votes3
answers74
viewsA: Display warning message when typing numeric value
Inside the function use: "Event.target.value" to obtain the input value; ex: function MontaAlerta(event) { // var numb = "100"; if (event.target.value === 100) { console.log(event.target.value) }…