Reliable cross browser way of setting Status bar text - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T00:24:22Zhttp://stackoverflow.com/feeds/question/876390http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/876390/reliable-cross-browser-way-of-setting-status-bar-text1Reliable cross browser way of setting Status bar textJeremy Rudd2009-05-18T05:36:07Z2009-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#8763956Answer by Brad Wilson for Reliable cross browser way of setting Status bar textBrad Wilson2009-05-18T05:38:57Z2009-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#8763985Answer by blowdart for Reliable cross browser way of setting Status bar textblowdart2009-05-18T05:39:31Z2009-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#8764085Answer by Livinloud for Reliable cross browser way of setting Status bar textLivinloud2009-05-18T05:46:24Z2009-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>