Hartmut R.: Verzweifelung pur!

Beitrag lesen

Hi,

erstmal müssen wir den Javascript-Error wegbekommen. Ersetze mal die Zeile 37:
if(IE) { diffY = document.body.scrollTop; diffX = document.body.scrollLeft; }

durch folgendes:
if(IE) {
  if (document.body) {
    if (document.body.scrollTop) diffY = document.body.scrollTop;
    if (document.body.scrollLeft) diffX = document.body.scrollLeft;
  }
}

Wenns dann nicht funzt, müssen wir weitersuchen.

MfG
hartmut R.