Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reliable cross browser way of setting Status bar text

I've heard of window.status 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?

like image 391
Robin Rodricks Avatar asked Dec 01 '22 07:12

Robin Rodricks


2 Answers

The feature you are looking for as been disabled for security reason.

Here is another solution to your problem.

You could create a DIV and put the position:fixed; at the bottom of the page, so people will always see it.

like image 183
Michael B. Avatar answered Dec 04 '22 07:12

Michael B.


For security reasons, most modern browsers disable status bar access by default.

like image 37
Brad Wilson Avatar answered Dec 04 '22 06:12

Brad Wilson