Window.locationbar
Summary
Returns the locationbar
object, whose visibility can be checked.
Syntax
JavaScript
Copy Code
<var>objRef</var> = window.locationbar
Example
The following complete HTML example shows way that the visible property of the locationbar object is used.
HTML
Copy Code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Various DOM Tests</title> <script> var visible = window.locationbar.visible; </script> </head> <body> <p>Various DOM Tests</p> </body> </html>
Specification
HTML5
See also
window.locationbar
,window.menubar
,window.personalbar
,window.scrollbars
,window.statusbar
,window.toolbar
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/window/locationbar