![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
10/12/2013, 14:22
|
![Avatar de Dalam](http://static.forosdelweb.com/customavatars/avatar368829_1.gif) | | | Fecha de Ingreso: septiembre-2010
Mensajes: 409
Antigüedad: 14 años, 4 meses Puntos: 56 | |
Respuesta: $('#scoreBar').append no funciona Cita: $(document).ready(function() {
var idLea = 'NBA';
$.ajax({
url: "../livescore.php",
type: "GET",
data: "idLeague=idLea",
dataType: "html",
success: function(response) {
$('#scoreBar').empty();
$('#scoreBar').append(response);
console.log(response);
}
});
}); |