I have an ajax request with the following code:
<script type="text/javascript">
function AddVoto()
{
$.ajax({
type: "POST",
url: "{{url('votos/adicionar/')}}/{{{$postagem->id_postagem}}}",
data: {'id_post':<?php echo $postagem->id_postagem;?>, '_token': $('input[name=_token]').val()},
cache: false,
success: function(data){
alert("pedido feito com sucesso");// apresentar aqui o resultado
}
});
}
</script>
<a href="#" style="text-decoration:none;" id="myVoto" onclick="AddVoto();return false;">Adicionar voto</a>
<div id="resultado"></div>
The request is arriving correctly, and I want to print the result of the in div "result" but I am not able to. How can I change the content of the div with the result of the ajax request?