@ Gunnar
Hallo Gunnar. Hab's nach langem Hin und Her doch noch gefunden und zwar hier im Archiv. :-p
Link
Klappt soweit ganz gut. Das Ganze sieht momentan noch so aus:
file:///C:/xampp/htdocs/homepage/index.htm?unterordner/index.htm
Mit dem erweiterten URL ( location.pathname ) kann man nun gezielt den Frame-Content laden. Dem Inline Frame angepasst sieht das dann in etwa so aus:
Parent mit dem IFrame:
function checkFramecall() {
var Adressanhang=location.search;
if(Adressanhang)
main.location.href=Adressanhang.substring(1,Adressanhang.length);
}
Seite im IFrame:
function checkFrameset()
{
if(!parent.main)
location.href="http://www.HalloLeute.de/index.htm?" + location.pathname;
}
Jouh, bis demnächst mal wieder !
Gruß Wastl