If I call document.write() inside a script tag, can I trust that it will always execute at the same time on major browsers (that is, during page load and before onload event)?
Also, will this work on major browsers:
<script ...>
if (condition)
document.write('<div ...>');
else
document.write('<span ...>');
</script>
... // some content.
<script ...>
if (condition)
document.write('</div>');
else
document.write('</span>');
</script>
?