![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#31 |
|
Hobbyist Programmer
Join Date: Nov 2005
Posts: 149
Rep Power: 3
![]() |
Okay, I think I've decided what I'm going to do. I'm going to write or find a simple page that uses document.getElementById that works in IE, and slowly change it to make it an exact clone of the page that my server returns. Eventually, I'll see where the problem lays.
In the mean time, any insights would still be helpful. |
|
|
|
|
|
#32 |
|
Expert Programmer
Join Date: Jun 2005
Posts: 824
Rep Power: 4
![]() |
The error is on this line:
item=document.getElementById(id); The variable item already has a value from previous function calls you have made, so when you are assigning to it, the JavaScript code actually tries to set the default property of "item" to the new value. One way to fix this is to use var item=document.getElementById(id); |
|
|
|
|
|
#33 |
|
Hobbyist Programmer
Join Date: Nov 2005
Posts: 149
Rep Power: 3
![]() |
Wow.
I found that out just now and was coming back to post to say I had, lmao. Thanks to everyone who sat through it, and thanks to The Dark. The site works fine in IE now. |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|