I have an input
field:
<input type="text" name="notifyEmail" id="parametersEmail" value="" size=40 />
I have a chunk of jquery code that works when I hit tab or otherwise leave the field, which calls a validation routine:
$("#parametersEmail").blur(function(event) {
validateParameterEmail();
});
What I would like to do is run the validateParameterEmail()
function whenever the value or content of the input field changes.
So I then also tried the .change()
handler:
$("#parametersEmail").change(function(event) {
validateParameterEmail();
});
But when I change the contents of parametersEmail
, this handler does not call the validation function.
Is there another handler I should be using, instead? Or can I not attach multiple event handlers to the input field?
Try $("#parametersEmail").keydown(function(event) {})
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With