jQuery API

.before()

.before( content [, content] ) Returns: jQuery

Description: Insert content, specified by the parameter, before each element in the set of matched elements.

  • version added: 1.0.before( content [, content] )

    contentHTML string, DOM element, or jQuery object to insert before each element in the set of matched elements.

    contentOne or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements.

  • version added: 1.4.before( function )

    functionA function that returns an HTML string, DOM element(s), or jQuery object to insert before each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.

The .before() and .insertBefore() methods perform the same task. The major difference is in the syntax-specifically, in the placement of the content and target. With .before(), the selector expression preceding the method is the container before which the content is inserted. With .insertBefore(), on the other hand, the content precedes the method, either as a selector expression or as markup created on the fly, and it is inserted before the target container.

Consider the following HTML:

<div class="container">
  <h2>Greetings</h2>
  <div class="inner">Hello</div>
  <div class="inner">Goodbye</div>
</div>

You can create content and insert it before several elements at once:

$('.inner').before('<p>Test</p>');

Each inner <div> element gets this new content:

<div class="container">
  <h2>Greetings</h2>
  <p>Test</p>
  <div class="inner">Hello</div>
  <p>Test</p>
  <div class="inner">Goodbye</div>
</div>

You can also select an element on the page and insert it before another:

$('.container').before($('h2'));

If an element selected this way is inserted elsewhere, it will be moved before the target (not cloned):

<h2>Greetings</h2>
<div class="container">
  <div class="inner">Hello</div>
  <div class="inner">Goodbye</div>
</div>

If there is more than one target element, however, cloned copies of the inserted element will be created for each target after the first.

In jQuery 1.4, .before() and .after() will also work on disconnected DOM nodes:

$("<div/>").before("<p></p>");

The result is a jQuery set that contains a paragraph and a div (in that order).

Additional Arguments

Similar to other content-adding methods such as .prepend() and .after(), .before() also supports passing in multiple arguments as input. Supported input includes DOM elements, jQuery objects, HTML strings, and arrays of DOM elements.

For example, the following will insert two new <div>s and an existing <div> before the first paragraph:

var $newdiv1 = $('<div id="object1"/>'),
    newdiv2 = document.createElement('div'),
    existingdiv1 = document.getElementById('foo');

$('p').first().before($newdiv1, [newdiv2, existingdiv1]);

Since .before() can accept any number of additional arguments, the same result can be achieved by passing in the three <div>s as three separate arguments, like so: $('p').first().before($newdiv1, newdiv2, existingdiv1). The type and number of arguments will largely depend on how you collect the elements in your code.

Examples:

Example: Inserts some HTML before all paragraphs.

<!DOCTYPE html>
<html>
<head>
  <style>p { background:yellow; }</style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <p> is what I said...</p>
<script>$("p").before("<b>Hello</b>");</script>

</body>
</html>

Demo:

Example: Inserts a DOM element before all paragraphs.

<!DOCTYPE html>
<html>
<head>
  <style>p { background:yellow; }</style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <p> is what I said...</p>
<script>$("p").before( document.createTextNode("Hello") );</script>

</body>
</html>

Demo:

Example: Inserts a jQuery object (similar to an Array of DOM Elements) before all paragraphs.

<!DOCTYPE html>
<html>
<head>
  <style>p { background:yellow; }</style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <p> is what I said...</p><b>Hello</b>
<script>$("p").before( $("b") );</script>

</body>
</html>

Demo:

Support and Contributions

Need help with .before() or have a question about it? Visit the jQuery Forum or the #jquery channel on irc.freenode.net.

Think you've discovered a jQuery bug related to .before()? Report it to the jQuery core team.

Found a problem with this documentation? Report it to the jQuery API team.

* All fields are required
  • Andrea

    It would be handy to know what it returns. The added element or the container?

  • http://twitter.com/jdeerhake John Deerhake

    This returns the context (the element which you are inserting before). If you want something that returns the created element, look at insertBefore.

    (sorry for double post, forgot to hit reply)

  • Anh Nguyen

    Be careful because the inline javascript will be re-executed. Currently I have a problem with it and still haven't found solution.

  • http://www.brandonmichaelhunter.com Brandon Michael Hunter

    .before method seems slow with regards to a select list. It moves wells when the opiton item is like 3 or 4 item in the list, but when the item is current at index 2 and you try to make it the first item, its slow.

  • ojos de coño

    how to add (

  • ojos de coño

    How to add

  • http://pulse.yahoo.com/_P7TITXAGVGAO2WCBVX4F56KD2E freak3dot

    I think the point of JQuery is not to have inline javascript. That which is shown above is purely for demonstration. Please reference: jQuery(document).ready(function() { … }); where … is your custom code.

  • http://pulse.yahoo.com/_P7TITXAGVGAO2WCBVX4F56KD2E freak3dot

    I think the point of JQuery is not to have inline javascript. That which is shown above is purely for demonstration. Please reference: jQuery(document).ready(function() { … }); where … is your custom code.

  • Pernifin

    why context becomes [document] when previously grab $(<selector>) returns 0 elements? I mean:
    $(“input[type=password]“).before(…)

    if $(“input[type=password]“) returns 0 elements, then before method tries to insert content before document. Why such way?

    Try this:
    $(“input[type=password]“).before(function() {console.log(this);});
    whan no password inputs on the page</selector>

  • Pernifin

    why context becomes [document] when previously grab $(<selector>) returns 0 elements? I mean:
    $(“input[type=password]“).before(…)

    if $(“input[type=password]“) returns 0 elements, then before method tries to insert content before document. Why such way?

    Try this:
    $(“input[type=password]“).before(function() {console.log(this);});
    whan no password inputs on the page</selector>