08/06/2009, 06:34
|
| | Fecha de Ingreso: octubre-2008
Mensajes: 19
Antigüedad: 16 años, 1 mes Puntos: 0 | |
Respuesta: No actualizar si no hay cambios En la página oficial de jquery he encontrado esto:
$("#elem").loadIfModified("some.php")
This convenience method is being removed in favor of the long form use of $.ajax():
$.ajax({
url: "some.php",
ifModified: true,
success: function(html){
$("#elem").html(html);
}
});
Así que hay que hacerlo por ese camino... |