Dr3amCatch3r
Grünschnabel
HI erstmal,
Meine Frage: Kann ich auch irgendwas im Javascript ändern, damit ich nach dem Timeout die Zielseite in einem andern Fenster oder anderem Frame darstellen kann?
<SCRIPT LANGUAGE="JavaScript">
<!--
setTimeout('checkBrowser()', 7000);
function checkBrowser () {
userAg = navigator.userAgent;
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
if (bVer >= 4) {
window.location.href="start.html";
} else {
if (bVer == 3) {
// Redirect all other browsers
window.location.href="start.html";
}
else {
// Redirect all other browsers
window.location.href = "start.html";
} // Else ...
} // IF Bver = 3/ELSE ...
} // Function ...
// -->
</SCRIPT>
Das ist jetzt mal das Script, kann ich also auch irgendwo target="framename" eingeben? Oder gibt es eine andere Formulierung?
Danke schonmal,
Dr3amCatch3r
Meine Frage: Kann ich auch irgendwas im Javascript ändern, damit ich nach dem Timeout die Zielseite in einem andern Fenster oder anderem Frame darstellen kann?
<SCRIPT LANGUAGE="JavaScript">
<!--
setTimeout('checkBrowser()', 7000);
function checkBrowser () {
userAg = navigator.userAgent;
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
if (bVer >= 4) {
window.location.href="start.html";
} else {
if (bVer == 3) {
// Redirect all other browsers
window.location.href="start.html";
}
else {
// Redirect all other browsers
window.location.href = "start.html";
} // Else ...
} // IF Bver = 3/ELSE ...
} // Function ...
// -->
</SCRIPT>
Das ist jetzt mal das Script, kann ich also auch irgendwo target="framename" eingeben? Oder gibt es eine andere Formulierung?
Danke schonmal,
Dr3amCatch3r