Christian-St: Probleme mit Frameset

Beitrag lesen

Mit welchem Operator greifst du denn auf Objekteigenschaften zu?

Da ich mich mit Programmiersprachen nicht wirklich auskenne, poste ich mal die verwendete Funktion... (meintest du das?)

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 {
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   parent.frames[0].location.href = x;
   // top.location.href = x;
   // top.frames[1].location.href = x;
 }

Danke! Gruß Christian