I\'m trying to use the equalTo method with the jQuery Validation Plugin (http://jqueryvalidation.org/equalTo-method) but it\'s not working. Can anyone help me figure out wha
Try
jQuery(function ($) { $("#ss-form").validate({ rules: { entry_123: "required", "email-again": { equalTo: "#entry_123" } } }); // end of function validate });
Demo: Fiddle