I've never given this much thought before, but now I'm wondering ... what exactly does document.all refer to?
I'm looking at a page with a bit of script which says (as an example) ...
... where clock is just the name of a DIV section.
I know you can use document.all to navigate through the document tree, but what does it mean in the context above (i.e. returning a boolean value it seems!). Does it return TRUE if all objects on the document have finished loading?
A simple one but I'd like to know.
Greg.
I'm looking at a page with a bit of script which says (as an example) ...
Code:
if (!document.all) document.write("Hello")
else clock.innerHTML="Hello"
I know you can use document.all to navigate through the document tree, but what does it mean in the context above (i.e. returning a boolean value it seems!). Does it return TRUE if all objects on the document have finished loading?
A simple one but I'd like to know.
Greg.