Layout Options

  • Fixed Header
    Makes the header top fixed, always visible!
  • Fixed Sidebar
    Makes the sidebar left fixed, always visible!
Introduction
Webconcept

Description

The :hidden selector selects all elements that are hidden.

Hidden elements are elements that are:

  • set to display:none
  • form elements with type="hidden"
  • Width and height set to 0
  • A hidden parent element (this also hides all child elements)

v1.0

This method has the form:

$(":hidden")

Examples

Select all <p> elements that are hidden:

$("p:hidden")

Description

The :visible selector selects every element that is currently visible.

Visible elements are elements that are not:

  • set to display:none
  • form elements with type="hidden"
  • Width and height set to 0
  • A hidden parent element (this also hides all child elements)

v1.0

This method has the form:

$(":visible")

Examples

Select all <p> elements that are visible:

$("p:visible")