Stefan Kilp [sk-software] schrieb:
> Hi,
>
> testing demoform "validating a complete from"
>
> i entered 123456 in password field, then entered 111111 in confirm password
> which leads to a warning "please enter the same password as above" which is 
> correct.
> now i enter 111111 in password field. so both inputs match each other. but 
> the warning after 
> confirm password is still visible (but should be removed)
>   
The message is removed the moment you submit the form (just press enter 
after editing the password field again). So far I don't consider this a 
bug. A workaround is still possible: Add a custom keyup event to the 
password field and programmatically validate the the confirm password 
field, something like this:

var validator = $("#myform").validate();
$("#password").keyup(function() {
    validator.element("#confirm_password");
});
> - what about putting a version number in the demo test site
>   
Normally I update the demo test site when uploading a new release, so 
you can always refer to the plugin page for versions. I see if I can 
automate that.

-- 
Jörn Zaefferer

http://bassistance.de


_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to