gg wrote on 16 apr 2003 in microsoft.public.scripting.jscript:
Quote:
> after I am done changing the innerhtml of some <div id=..> </div>,
> how do I get IE to show the change? it is reload, or is it?
It will show realtime.
innerHTML in j(ava)script is case sensitive!!
Try this:
<div id="x">Hello</div>
<script>
setTimeout('x.innerHTML="World"',1000)
</script>
tested on IE6
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)