Site up and running
IamMrRay
Otis, MA
ok, I have my site up now, but I am still fighting a huge war with internet explorer and I definitely want it to be presentable for all browsers. IE is the only one out of 6 I have tested that is being stupid. I have an idea of using javascript to detect browser types and do an alternative style sheet for all wonderful Internet explorer but I rather not.... Any ideas????
0
Comments
var IE****fullness = 0;
var OtherBrowser = 0;
if (navigator.appName.indexOf('Netscape')
!=-1) {Netscape = 1;}
else
{
if (navigator.appName.indexOF('Microsoft Internet Explorer')
!= 1) {IE****fullness = 1;}
else {OtherBrowser = 1;}
}
browserVersion = parseInt(navigator.appVersion);
if (IE****fullness){
document.write("<link REL='stylesheet' HREF='gd_dm_IE.css' TYPE='text/css'>");
}
else {
if (Netscape){
document.write("<link REL='stylesheet' HREF='default.css' TYPE='text/css'>");
} else {
if (OtherBrower) {
document.write("<link REL='stylesheet' HREF='default.css' TYPE='text/css'>");
}
}
}