[removed] Change browser window status message

前端 未结 3 1438
既然无缘
既然无缘 2020-12-19 14:51

It was once possible to change the message a browser shows in the status bar at the bottom of the window. This functionality has been disabled in newer browser versions due

相关标签:
3条回答
  • 2020-12-19 15:45

    There are two things you can do without Flash or Java:

    1. Fake it: display a div that looks like a status bar.

      position: fixed;
      bottom: 0;
      left: 0;
      border: 1px solid silver;
      background: #aaaaaa;
      
    2. Choose URLs so that you show desired information to the user when they hover over links.

    But please don't.

    0 讨论(0)
  • 2020-12-19 15:48

    Have a look at the pages still changing this info. If it is being done by javascript you should be able to see the source.

    0 讨论(0)
  • 2020-12-19 15:49

    Using the browsers statusbar to display page info is in most cases a very bad idea, the browsers has not disabled it without reason.

    1. Nobody looks down there to find such info.
    2. People expect it to show browser information. When hovering links for example i want to know if i leave the site, if it's a mailto:-link, if it's a pdf etc.

    Instead use somthing like the orange(yellow?) thing stackoverflow have at the top of the page. "Are you new to stackoverflow...", "New posts has been added..." etc etc.

    0 讨论(0)
提交回复
热议问题