Document.write keeps waiting until alert boxes finish to actually print out. help?

Jeff24

New member
Javascript, html? for example I'll write:

document.write("******");
alert("hello. how are you?");

and when I open it in a browser, it will first pop the alert, and wait till that's done and then print out the document.write. How can I make document.write print when I want it to (ie: before the alert/ other boxes)?
 
Back
Top