Window status Property - Javascript Browser Object Model

Javascript examples for Browser Object Model:Window status

Description

The status property sets the text in the status bar, or returns the previously set text.

Return Value

A String, representing the text displayed in the status bar

Set the text in the status bar:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<script>
window.status = "Some text in the status bar!!";
</script>/*from   w w  w.  j a va 2  s.  c  o m*/

</body>
</html>

Related Tutorials