I have these form fields with names like this:
/dwint/singlepagecheckout/DWINTOneClickCheckoutFormHandler.bean.shippingAddress.firstName
Which Im trying to pass into jQuery validate, but getting all sorts of errors. Does anyone have any advice?
$("#temp2_form").validate({
rules: {
email: {
required: true,
email: true
},
/dwint/singlepagecheckout/DWINTOneClickCheckoutFormHandler.bean.shippingAddress.firstName: {
required: true
}
}
});