posabsolute / jQuery-Validation-Engine

jQuery form validation plugin
http://www.position-absolute.com/articles/jquery-form-validator-because-form-validation-is-a-mess/
2.57k stars 1.2k forks source link

condRequired Issue #929

Closed cranone closed 8 years ago

cranone commented 8 years ago

validate[condRequired[]] sometimes not work with radio,I found that after jquery1.6,$('obj').attr("checked") not work well,it shold be $('obj').prop("checked"). jquery.validationEngine.js !field.attr('checked') change to !field.prop('checked')

cranone commented 8 years ago

all right,the lastest code is 'prop' ,but the release not,my fault