Andreas : Quickbar

Beitrag lesen

Sorry Fehler gefunden: [info] hatte nicht gestimmt. iframe name war infofeld.
PS fals jemand dieses Script verwedet. In diesem Script ist noch ein Fehler drin:
parent.frames[1].location.href = x; muss entweder  raus.
oder "//" davor.

Mfg und Danke nochmal Lutz.

function Go(x) {
if(x == "nothing") {
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   return;
}
else if(x == "end")
   top.location.href = parent.frames[1].location;
else {
   window.frames["info"].location.href="info3.html"; //hier zugefügt
   parent.frames[1].location.href = x;
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
}
}