@jak
hab jetzt deine tipps ausprobiert, komm aber nicht ganz klar.
es geht zwar das komplette frameset auf aber nicht die unterseite.
code in der unterseite:
Code:
if (top.location.href != 'main.html'){
document.location.href = 'main.html?besetzung.html';
}
code im frameset
Code:
var param=document.location.search;
if(param != ""){
//das ? am Anfang entfernen:
param=param.substring(1,param.length);
//das Inhalts-frame auf die richtige Seite setzen
//document.getElementsByName("inhalt").location.href = param;
//window.frames['inhalt'].location.href = param;
window.inhalt.location.href = param;
}
habs im frameset schon mit mit frames[x] und getElementsByName ausprobiert funkt aber auch nicht.
noch irgendwelche tipps?