> It could be related to a different issue that I solved > recently. Could > you give the latest revision a try? > http://dev.jquery.com/view/trunk/plugins/validate/
I grabbed the latest version and still no luck... A few dumb questions: Where do I place the addMethod: <script> $().ready(function() { == here? == $("#frmtelework").validate({ == or here? == rules: {} }); }); </script> And I'm assuming that if my addMethod check failed - it would flag that field with the error I defined "You must read and agree to the terms and conditions before proceeding."? $.validator.addMethod("checkyesno", function(value) { if (value == 'Yes') { return true; } else { return false; } }, "You must read and agree to the terms and conditions before proceeding."); Thanks for the help!!! Jim