Dave's Brain

Browse - programming tips - ie status

Date: 2007oct11

Q. How can I update the status bar in Microsoft Internet Explorer?

A.

In javaScript do:

	window.status = 'Hello World';

Its a handy debugging tool.
Some people even do primitive animations:

<script>
function tick()
{
        window.status += '*';
	setTimeout('tick()', 500);
}

tick();
</script>

See also "Firefox dump"
http://www.davekb.com/search.php?target=Firefox+dump

Add a comment

Sign in to add a comment
Copyright © 2008, dave - Code on Dave's Brain is licensed under the Creative Commons Attribution 2.5 License.