You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've a problem with valid element age on click. I want to check first that element age is valid then load loadresults();, i've tried few option but they dont work, anyone knows how to fix it
Hi all,
I've a problem with valid element age on click. I want to check first that element age is valid then load loadresults();, i've tried few option but they dont work, anyone knows how to fix it
$('button').click(function () {
loadresults();
});
var age = new LiveValidation('age', {
validMessage: "Message ",
wait: 1000
});
age.add(Validate.Numericality, {
minimum: 18,
maximum: 100,
onlyInteger: true,
notANumberMessage: "Only Numbers"
});
age.add(Validate.Presence, {
failureMessage: "Error"
});
The text was updated successfully, but these errors were encountered: