I'm using the Jquery Validation plugin
I need to know if at least one of the fields has been filled out
Fields > Phone, Mobile
I tried to do this:
$("#Telefone").rules("add", {
required: $('#Celular').val() == '',
messages: {
required: "Esse campo é obrigatório."
}
});
But I did not succeed.