All form validation not work anymore after RC5.2, I already disable the mootools and validation of ccform.
here is one of the example <input type="text" onchange="qty_check(this, 1, 10)">
other include onblur, onclick..
#javascript
function validateAndSubmit(theform) {
if (qty_check(theform.quantity, 1, 10)) {
return true
}
else {
alert("error")
return false
}
}
I'm staying with RC5.2, any solution?
here is one of the example <input type="text" onchange="qty_check(this, 1, 10)">
other include onblur, onclick..
#javascript
function validateAndSubmit(theform) {
if (qty_check(theform.quantity, 1, 10)) {
return true
}
else {
alert("error")
return false
}
}
I'm staying with RC5.2, any solution?