jquery validate display error on particular keyup code example
Example: 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()}