/ Published in: JavaScript
Fixes an issue if you have another login form on the page with a password field.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
if(Ka.Info.PAGE == "login/registerUser.jsp"){ if (Ka && Ka.formValidation) { Ka.formValidation.rules['password-match-with'].test = function(val,propVal){return (val == $j('#' + propVal).val()); } } }