I\'m using the jQuery Validation Plugin on my form. On my form I have a \'Telephone\' field and a \'Mobile No.\' field.
How would I go about making it so the user ha
This Will do
Mobile: { required: function(element) { return (jQuery.isEmptyObject($("#Phone").val())); } }, Phone: { required: function(element) { return (jQuery.isEmptyObject($("#Mobile").val())); } }