window.personalbar : Window Object : Window JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Window » Window Object »

 

window.personalbar











Syntax








window.personalbar.property



The real use of this property is to access its visible property to determine if the personal bar is visible.

If it is visible, the property returns true.

It returns false if the bar is not visible.












<html>
    <script language="JavaScript">
    <!--
    document.writeln('Menu Bar: ' + window.menubar.visible + '<br>');

    document.writeln('Tool Bar: ' + window.toolbar.visible + '<br>');

    document.writeln('Location Bar: ' + window.locationbar.visible + '<br>');

    document.writeln('Personal Bar: ' + window.personalbar.visible + '<br>');

    document.writeln('Scroll Bars: ' + window.scrollbars.visible + '<br>');

    document.writeln('Status Bar: ' + window.statusbar.visible + '<br>');

    document.close();
    -->
    </script>
</html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Window
» Window Object