Layout Options

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

Description

The .add() method is used to add elements to the set of matched elements.


v1.0

This method has the form:

.add(selector)
Parameter Description
selector (required) Specifies a string representing a selector expression to find additional elements to add to the set of matched elements

Return Value

This form returns a jQuery object.


v1.4

This method has an alternate form:

.add(elements)
Parameter Description
elements (required) Specifies one or more elements to add to the set of matched elements

Return Value

This form returns a jQuery object.


v1.0

This method has an alternate form:

.add(html)
Parameter Description
html (required) Specifies an HTML fragment to add to the set of matched elements

Return Value

This form returns a jQuery object.


v1.3.2

This method has an alternate form:

.add(jQuery object)
Parameter Description
jQuery object (required) Specifies an existing jQuery object to match the current set of elements against

Return Value

This form returns a jQuery object.


v1.4

This method has an alternate form:

.add(selector, context)
Parameter Description
selector (required) Specifies a string representing a selector expression to find additional elements to add to the set of matched elements
context (required) Specifies The point in the document at which the selector should begin matching; similar to the context argument of the $(selector, context) method

Return Value

This form returns a jQuery object.

Description

The .addBack() method is used to add the previous set of elements on the stack to the current set, optionally filtered by a selector.


v1.8

This method has the form:

.addBack([selector])
Parameter Type Description
selector String (optional) Specifies a string containing a selector expression to match the current set of elements against

Return Value

This form returns a jQuery object.

Description

The .andSelf() method is used to add the previous set of elements on the stack to the current set.


v1.2

This method has the form:

.andSelf()

Return Value

This form returns a jQuery object.

Description

The .contents() method is used to get the children of each element in the set of matched elements, including text and comment nodes.


v1.2

This method has the form:

.contents()

Return Value

This form returns a jQuery object.

Description

The .end() method is used to end the most recent filtering operation in the current chain and return the set of matched elements to its previous state.


v1.0

This method has the form:

.end()

Return Value

This form returns a jQuery object.

Description

The .not() method is used to remove elements from the set of matched elements./p>


v1.0

This method has the form:

.not(selector)
Parameter Description
selector (required) Specifies a string containing a selector expression to match elements against

Return Value

This form returns a jQuery object.


v1.4

This method has an alternate form:

.not(function(index))
Parameter Description
function(index) (required) Specifies a function used as a test for each element in the set. this is the current DOM element

Return Value

This form returns a jQuery object.


v1.0

This method has an alternate form:

.not(elements)
Parameter Description
elements (required) Specifies one or more DOM elements to remove from the matched set

Return Value

This form returns a jQuery object.