Probably a goofy question, but I can\'t seem to find anything in google land. I simply need one of my methods to ignore the case of the entered field. I am doing a city name mat
jQuery.validator.addMethod("atlanta", function(value) {
return value.toLowerCase() == "atlanta";
}, '**Recipient must reside in Chicago City Limits**');