How do I write to the browser's status line from JavaScript?
Created May 4, 2012
Shyam Prasad This is pretty simple.
Cut and paste the following code.
<HTML> <HEAD> <!--Author: shyamprasadkr@yahoo.com --> </HEAD> <BODY> Hi <SCRIPT> window.status = "This is the status as of now!!!"; </SCRIPT> </BODY> </HTML>