Answers for "jquery validate on keyup"

0

jquery validate on keyup

You actually need to set the onkeyup option to a function that accepts the element being validated as a parameter, so try changing:

onkeyup: true, 

to

onkeyup: function(element) {$(element).valid()}
Posted by: Guest on December-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language