Código PHP:
{"data":[{"DT_RowId":"row_2","first_name":"karem "}]}
Código PHP:
$(document).ready( function (){
$("#actualizar").click(function(){
$.ajax({
url:'../php/standalone.php',
dataType:'json',
success:function(data){
$("#resultados").html('');
$.each(data, function(index){
var ronda = data[index].first_name;
alert (ronda)
})
}
})
})
})
<body>
<button id="actualizar"></button>
<div id="resultados">
</div>
</body>
espero que alguien me pueda ayudar