Layout Options

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

Description

The :contains selector selects elements containing the specified string.

The string can be contained directly in the element as text, or in a child element.

This is mostly used together with another element/selector to select the elements containing the text in a specific group.


v1.1.4

This selector has the form:

$(":contains(text)")
Parameter Description
text (required) Specifies the text to find.

Description

The :empty selector selects empty elements.

An empty element is an element without child elements or text.


v1.0

This selector has the form:

$(":empty")

Description

The :has() selector selects elements which contain at least one element that matches the specified selector.


v1.1.4

This selector has the form:

$(":has(selector)")

Description

The :parent selector selects all elements that are the parent of another element.


v1.0

This selector has the form:

$(":parent")