Posts by William Martins de Morais • 11 points
1 post
-
1
votes1
answer28
viewsA: Calling an ajax inside the sucess of another ajax contained in the first ajax
Would that be? $('.musica').click(function (e) { e.preventDefault(); $thm = $(this); $.ajax({ url: "pagina2.php", type: 'GET', data: { identificador: $thm.attr("title") }, success: function (data2)…