@@Generic1:
nuqneH
ist es per JS möglich, dass ich zu einer anderen Seite weiterleite, welche dann angezeigt wird?
http://de.selfhtml.org/javascript/objekte/location.htm@title=Ja.
Qapla'
Hallo nochmal,
ganz ist mir das nicht klar, wie das geht, gibt es vielleicht ein funktionierendes Beispiel?
Ich hab das mal ausprobiert aber es funktioniert leider nicht:
~~~javascript
<html><head><title>Test</title>
<script type="text/javascript">
function FensterOeffnen() {
//window.location.href = "datei2.htm";
//MeineDomain = location.host;
//parent.frames[1].location.href = "datei2.htm";
Zweitfenster.host = "www.selfhtml.org";
}
</script>
</head><body>
<a href="datei2.htm" onclick="FensterOeffnen();" return false">Neues Fenster</a>
</body></html>