Ver Mensaje Individual
  #12 (permalink)  
Antiguo 08/06/2009, 06:34
enterweb
 
Fecha de Ingreso: octubre-2008
Mensajes: 19
Antigüedad: 15 años, 6 meses
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...