Ver Mensaje Individual
  #5 (permalink)  
Antiguo 10/12/2013, 14:22
Avatar de Dalam
Dalam
 
Fecha de Ingreso: septiembre-2010
Mensajes: 409
Antigüedad: 13 años, 7 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);
}
});
});