instead of example:
$(".myfield").blur(function() {
// validate
})
$(".myfield").keyup(function() {
// validate
})
is there a way to combine these two?
|
|
|
|
|||
|
In case you want to validate each for itself...
|
|||||||||||||
|
|
As a side note, you might want to take a look att the jQuery Validate Plugin. |
|||
|
|