Layout Options

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

Description

The :button selector selects all <button> elements, and <input> elements with type=button.


v1.0

This selector has the form:

$(":button")

Tip: Using input:button with this selector will not select the <button> element.

Description

The :checkbox selector selects <input> elements with type=checkbox.


v1.0

This selector has the form:

$(":checkbox")

Description

The :checked selector selects all checked checkboxes or radio buttons.


v1.0

This selector has the form:

$(":checked")

Description

The :disabled selector selects all disabled form elements.


v1.0

This selector has the form:

$(":disabled")

Description

The :enabled selector selects all enabled form elements.


v1.0

This selector has the form:

$(":enabled")

Description

The :file selector selects <input> elements with type=file.


v1.0

This selector has the form:

$(":file")

Description

The :focus selector selects an element if it is currently focused.


v1.6

This selector has the form:

$(":focus")

Description

The :image selector selects <input> elements with type=image.


v1.0

This selector has the form:

$(":image")

Description

The :input selector selects form elements.

This selector also works with the <button> element.


v1.0

This selector has the form:

$(":input")

Description

The :password selector selects <input> elements with type=password.


v1.0

This selector has the form:

$(":password")

Description

The :radio selector selects <input> elements with type=radio.


v1.0

This selector has the form:

$(":radio")

Description

The :reset selector selects <button> and <input> elements with type=reset.


v1.0

This selector has the form:

$(":reset")

Tip: Using input:reset with this selector will not select the <button> element.

Description

The :selected selector selects <option> elements that are selected.


v1.0

This selector has the form:

$(":selected")

Note: This selector will not work on checkboxes or radio buttons. Use :checked for instead.

Description

The :submit selector selects <button> and <input> elements with type=submit.

If a <button> element has no defined type, most browsers will use it as a button with type=submit.


v1.0

This selector has the form:

$(":submit")

Tip: Using input:submit with this selector will not select the <button> element.

Description

The :text selector selects <input> elements with type=text.


v1.0

This selector has the form:

$(":text")