Topic awaiting preservation: Script not working in IE 4.0 |
|
---|---|
Author | Thread |
Paranoid (IV) Mad Scientist From: KC, KS |
posted 10-13-2003 17:12
Hey guys, I've got a wonderful problem with a project I'm working on. I've been asked to make sure it works in all versions of IE from 4.0 up. I can ignore NN, Opera, etc because this project is running only on our systems so we know that only IE will be used. The problem is that I have no idea how to modify the script for IE 4.0 because I'm not familiar with how the DOM works. code: if (!document.getElementById) return
|
Bipolar (III) Inmate From: Cold Sweden |
posted 10-13-2003 17:39
I don't think IE 4 have any support for the W3C DOM at all (edit: it was released one year before the Document Object Model Level 1 was released). You can forget getElementById and similar and use document.all instead. |
Paranoid (IV) Mad Scientist From: KC, KS |
posted 10-13-2003 17:50
Yep, that one works much better. |