I have a question regarding document.write.
In the following code segment, there are two document.write. Does the 2nd document.write get exectued after the image mypic.jpg is completely downloaded by the client? Or not?
////////////////////////////////////////////////////////////
<html>
<script language"javascripte">
document.write('<img src="MYPIC.JPG" ' + 'WIDTH=10 HEIGHT=10 >');
document.write("hello");
</script>
<body>
here.
</body>
</html>
In the following code segment, there are two document.write. Does the 2nd document.write get exectued after the image mypic.jpg is completely downloaded by the client? Or not?
////////////////////////////////////////////////////////////
<html>
<script language"javascripte">
document.write('<img src="MYPIC.JPG" ' + 'WIDTH=10 HEIGHT=10 >');
document.write("hello");
</script>
<body>
here.
</body>
</html>