Re: Odd javascript error from IE
IE loves to through the "Object required" error because it is not completely DOM compliant. That is why I suggest checking for the DOM element before you apply anything to it, or attempt to read it.
For example, you might want to try the following instead. There might be other parts in your code that need this same implementation.
Code:
if (titleElement.firstChild) {
if (titleElement.firstChild.data == "User Table") {
...
}
}
If the post was helpful...Rate it! Remember to use [code] or [php] tags.