Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

getElementById on IE4 Mobile

Status
Not open for further replies.

MSRez

Programmer
Dec 22, 2004
57
EU
I'm wanting to develop some simple AJAX-style JavaScript features to a website designed to run on mobile computers running IE4 but I'm having difficulty because getElementById won't work.

Is there an alternative I could use?

Thanks
 
Thanks for the suggestion but no luck, I'm afraid.

I tried:

Code:
document.move.innerHTML = 'test';

The best I can do at the moment is do document.write but that's not much use.
 
try

Code:
document.all.[COLOR=#ff0000]TheIDofTheObject[/color].something

Jason
 
It doesn't seem like document.all works either.

I'm losing hope!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top