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)?
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)?