Feldhofe
Erfahrenes Mitglied
Hallo!
Ich wollte mal fragen, wie man das trafficsparender schreiben kann: es geht hierbei um das unterschiedliche Festlegen von Formatvorlagen, je nachdem, ob man mit NC oder IE surft!
Das sieht mir so unglaublich umständlich aus, wer kriegt das einfacher hin??
Gruß und danke schonmal,
Feldhofe
Ich wollte mal fragen, wie man das trafficsparender schreiben kann: es geht hierbei um das unterschiedliche Festlegen von Formatvorlagen, je nachdem, ob man mit NC oder IE surft!
Das sieht mir so unglaublich umständlich aus, wer kriegt das einfacher hin??
Gruß und danke schonmal,
Feldhofe
PHP:
var browser = new Object();
var win=false;
if (navigator.userAgent.indexOf("Win")!=-1)
{
win=true;
}else
browser.version = parseInt(navigator.appVersion);
browser.isNavigator = false;
browser.isIE = false;
if (navigator.appName.indexOf("Netscape") != -1)
{
browser.isNavigator = true;
}
if (navigator.appName.indexOf("Microsoft") != -1)
{
browser.isIE = true;
}
if ((browser.isNavigator == true)&&win)
{
document.writeln('<style type="text/css">');
document.writeln('<!--');
document.writeln('body {font-size: 10px; font-family: verdana,arial,helvetica,sans-serif; text-decoration: none;}');
document.writeln('td {font-size: 10px; font-family: verdana,arial,helvetica,sans-serif; text-decoration: none}');
document.writeln('body.drucken {background-color: white;}');
document.writeln('font {font-size: 10px; font-family: verdana,arial,helvetica,sans-serif; text-decoration: none}');
document.writeln('\/\/ -->');
document.writeln('</style>');
}
else
{
document.writeln('<style type="text/css">');
document.writeln('<!--');
document.writeln('body {font-size: 9px; font-family: verdana,arial,helvetica,sans-serif; text-decoration: none; scrollbar-base-color: #666666; scrollbar-arrow-color: white}');
document.writeln('td {font-size: 9px; font-family: verdana,arial,helvetica,sans-serif; text-decoration: none}');
document.writeln('body.drucken {background-color: white; }');
document.writeln('font {font-size: 9px; font-family: verdana,arial,helvetica,sans-serif; text-decoration: none}');
document.writeln('\/\/ -->');
document.writeln('</style>');
}