Hello, I'm creating an ajax but if I use find to return in the desired div it does not return
success: function (ret) {
if (ret == "sucesso") {
$(this).find(".msg-envio").html("<p class='msg-sucesso'>Orçamento enviado com sucesso!</p>");
}
else {
$(this).find(".msg-envio").html("<p class='msg-erro'>Houve um erro ao enviar o orçamento.</p>");
}
}