Search w3schools.com:

SHARE THIS PAGE

Window self Property

Window Object Reference Window Object

Definition and Usage

The self property returns the current window.

Syntax

window.self


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The self property is supported in all major browsers.


Example

Example

When the "Check window" button is clicked, the function check() is called and the current window status is checked. If the topmost window (window.top) is different from the current window (window.self), then output that "This window is not the topmost window! Am I in a frame?". If the topmost window equals the current window, then fire the else statement:

<html>
<head>
<script>
function check()
{
if (window.top!=window.self)
  {
  document.write("<p>This window is not the topmost window! Am I in a frame?</p>")
  }
else
  {
  document.write("<p>This window is the topmost window!</p>")
  }
}
</script>
</head>
<body>
<input type="button" onclick="check()" value="Check window">
</body>
</html>

Try it yourself »


Window Object Reference Window Object

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]