> Thanks Jochem....but how do I test if a browser will render the site as intended (i.e. in NS 4 this site looks WAY off the intended look).
You use certain functions, right? Just test for those :-)
Instead of (pseudocode):
function getIt(It) {
return document.getElementById(It);
}
Use:
function getIt(It) {
if (document.getElementById) {
return document.getElementById(It);
}
else {
redirectLousyBrowser();
return false;
}
}
Jochem
--
I don't get it
immigrants don't work
and steal our jobs
- Loesje
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

