You are here: Reference > JavaScript > client-side > style handling > properties > visibility

visibility style property

Browser support:
Specifies or returns whether the element is visible.
This property is useful if you want to hide or show the contents of an element. Similar to display property, but if you set the visibility property to 'hidden', only the contents of the element will be invisible, the element stays in its original position and size. The display property with value 'none' hides the entire element.

Syntax:

object.visibility;
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: visibility

Possible values:

The type of this property is string.
 One of the following values: 
collapse
If used on cell elements, 'collapse' has the same meaning as 'hidden'.
hidden
Element is hidden.
inherit
Takes the value of this property from the computed style of the parent element.
visible
Element is visible.
Default: visible.

Example HTML code 1:

This example illustrates the use of the visibility property:
<head>
    <style>
        .visible {
            visibility: visible;
        }
        .hidden {
            visibility: hidden;
        }
    </style>
</head>
<body>
    <div class="hidden">A hidden element</div>
    <div class="visible">A visible element</div>
    There is an invisible element at the first line of the page
</body>
Did you find this example helpful? yes no

Example HTML code 2:

This example illustrates the use of the visibility property in JavaScript:
<head>
    <script type="text/javascript">
        function ChangeVisibility (selectTag) {
            // Returns the index of the selected option
            var whichSelected = selectTag.selectedIndex;

            // Returns the text of the selected option
            var visiValue = selectTag.options[whichSelected].text;

            var div = document.getElementById ("myDiv");
            div.style.visibility = visiValue;
        }
    </script>
</head>
<body>
    <div id="myDiv">change visibility!</div>

    <br />
    <select size="3" onchange="ChangeVisibility (this);">
        <option selected="selected" />visible
        <option />hidden
        <option />inherit
    </select>
</body>
Did you find this example helpful? yes no

Supported by objects:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content