19/10/2012, 14:16
|
| | Fecha de Ingreso: junio-2003 Ubicación: Asturias
Mensajes: 2.429
Antigüedad: 21 años, 5 meses Puntos: 7 | |
Respuesta: $.ajax solo funciona la primera vez... SOLUCIONADO, poniendo la propiedad "cache" :)
Código:
if ($('#btnParking').html() == 'Start Parking') {
$.ajax({
type: "GET",
cache: false,
dataType: "json",
url: urlStartParking,
success: function (data) {
if (data != 1) {
alert('No se ha podido realizar la petición de parking');
return;
}
alert('procesado correctamente');
},
error: function (xhr, textStatus, error) {
alert('error');
}
});
}
__________________ Charlie. |