eddie_the_great
Grünschnabel
Hallo
Ich hab mir ein Script zusammengebastelt dass auf eine andere Site umleiten soll wenn kein Firefox 2.x verwendet wird.
Allerdings tut es einfach nichts und ich hab mittlerweile auch keine Idee mehr warum das so sein könnte.
Hier das Script:
Wär nett wenn da wer drüberschaut ob ich was übersehn oder falsch gemacht hab, bin leider kein javascript profi.
grüße
eddie
Ich hab mir ein Script zusammengebastelt dass auf eine andere Site umleiten soll wenn kein Firefox 2.x verwendet wird.
Allerdings tut es einfach nichts und ich hab mittlerweile auch keine Idee mehr warum das so sein könnte.
Hier das Script:
Code:
function BrowserDetection(){
this.appName = "unbekannt";
this.appVersion = "unbekannt";
this.isFF = false;
this.UA = navigator.userAgent.toLowerCase();
if(this.UA.search(/firefox/) != -1){
this.appName = "Firefox";
this.isFF = true;
this.appVersion = parseFloat(/(firefox[^\s]*)/.exec(this.UA)[0].split("/")[1]);
}
}
var objUA = new BrowserDetection();
window.onload = function(){
if(objUA.isFF && (objUA.appVersion<2.0 || objUA.appVersion>2.99)){
window.location.replace(http://localhost:8080/amiesp_db/WrongBrowserError.seam);
}else if(!this.objUA.isFF){
window.location.replace(http://localhost:8080/amiesp_db/WrongBrowserError.seam);
}
}
Wär nett wenn da wer drüberschaut ob ich was übersehn oder falsch gemacht hab, bin leider kein javascript profi.
grüße
eddie