validationengine

jQuery ValidationEngine and MaskedInput

Is anyone using both of these plugins? We're using ValidationEngine to do inline-validating on blur. Works great. We're using MaskedInput to mask fields. Works great. However, any field that is set to use both only handles the MaskedInput. The MaskedInput seems to interfere or override the ValidationEngine event. Anyone run into th...

need to return true or false based on if value in text field is a specific number

I am looking to return true if the user entered 4 into the input field. function validateAddition() { if($("#validateAddition").val() == 4) { return true; } else { return false; } } <input value="" class="validate[required,onlyNumber,length[0,1]funcCall[validateAddition]] text-input" type="text" id="validateAddition" na...