Hi,
<script language="JavaScript">
ERROR: Required attribute "type" missing.
Angemessen waere hoechstens "Warnung". Bislang verstehen noch alle Browser dieses Attribut, es ist mir noch kein Fall untergekommen, wo es einen "ERROR" verursacht haette!
if(document.images) top.location.replace(Address);
Das ist zwar eine löbliche Abfrage, aber ich verstehe den Zusammenhang zwischen document.images und top.location.replace nicht.
Im Zusammenhang besser erkennbar
function FramesetTest() {
if (top.frames.length==0) {
Address="/index.html?/bewerbungsunterlagen.html";
if(document.images) top.location.replace(Address);
else top.location.href=Address;
}
}
In etwa ist "replace" all denen bekannt, die auch "document.images" kennen. "href" ist afaik schon aelter. Heutzutage ist diese Abfrage IMHO ueberfluessig.
Gruesse Joachim