2008-10-16 25 views

Répondre

1

Essayez d'ajouter ceci à votre tête HTML:

<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"> 
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"> 
+0

ok cela affectera-t-il la mise en cache sur la page im retournant aussi? – cduggan

0

où vous cliquez sur le produit/image page Appel onclick fonction javascript-à-dire

function getHashOnBack(valueget) 
{ 
    location.hash = "#backTo=" + $(window).scrollTop();$(document).height(); 
} 

Maintenant, mettez

$(document).ready(function() 
{ 
var ab = window.location.hash.substring(1).split("="); 
if (ab[0] == "backTo") 
{ 
    // this would be called automatically when back putton pressed and hav #back=1234 etc. // value in url 

    $(window).scrollTop(parseInt(ab[1])); 
} 
}