Hi folks,
This should be trivial, but I'm relatively new to web programming...
I'm using Javascript to write to the IE6 status bar with the rather straightforward script:
My problem is that every time I load the page, my message displays for only a second or two and this "Done" is displayed. How can I get my message to stick on the status bar?
Robert
This should be trivial, but I'm relatively new to web programming...
I'm using Javascript to write to the IE6 status bar with the rather straightforward script:
Code:
<script>
window.status="this is the status bar!";
</script>
Robert
Comment