JavaScript Reference/Javascript Properties/status window

Материал из Web эксперт
Перейти к: навигация, поиск

"status" Example

   <source lang="javascript">
   

<html><head> <script language="JavaScript">

   function function1() {
       window.status = "Welcome to www.wbex.ru";
   }

</script> </head> <body>

Check the status bar message.

</body> </html>


     </source>
   
  


"status" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |window | +----------------+--------------------------------------------------------------+

     </source>
   
  


"status" Syntax and Note

   <source lang="javascript">

Note: Read and write property. Specifies the message in the status bar of the window.

Syntax:

window.status = value


     </source>