Reliable cross browser way of setting Status bar text - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:24:22Z http://stackoverflow.com/feeds/question/876390 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/876390/reliable-cross-browser-way-of-setting-status-bar-text 1 Reliable cross browser way of setting Status bar text Jeremy Rudd 2009-05-18T05:36:07Z 2009-10-14T22:39:28Z <p>I've heard of <strong>window.status</strong> and that it can be used to control the browser's status bar text, but I would like to know if there are better or newer methods that can do the same, with most modern browsers. Also, is it possible to change the status text multiple times after the page has loaded?</p> http://stackoverflow.com/questions/876390/reliable-cross-browser-way-of-setting-status-bar-text/876395#876395 6 Answer by Brad Wilson for Reliable cross browser way of setting Status bar text Brad Wilson 2009-05-18T05:38:57Z 2009-05-18T05:38:57Z <p>For security reasons, most modern browsers disable status bar access by default.</p> http://stackoverflow.com/questions/876390/reliable-cross-browser-way-of-setting-status-bar-text/876398#876398 5 Answer by blowdart for Reliable cross browser way of setting Status bar text blowdart 2009-05-18T05:39:31Z 2009-05-18T05:39:31Z <p>You'll find most modern browsers don't allow it any more as it was abused to hide link destinations. </p> http://stackoverflow.com/questions/876390/reliable-cross-browser-way-of-setting-status-bar-text/876408#876408 5 Answer by Livinloud for Reliable cross browser way of setting Status bar text Livinloud 2009-05-18T05:46:24Z 2009-10-14T22:39:28Z <p>The feature you are looking for as been disabled for security reason.</p> <p>Here is another solution to your problem.</p> <p>You could create a DIV and put the position:fixed; at the bottom of the page, so people will always see it.</p> <p><a href="http://ryan.rawswift.com/2009/02/15/fixed-that-bar-at-the-bottom-like-facebook/" rel="nofollow">http://ryan.rawswift.com/2009/02/15/fixed-that-bar-at-the-bottom-like-facebook/</a></p>