jQuery API

.prepend()

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

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

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

    contentDOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements.

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

  • version added: 1.4.prepend( function(index, html) )

    function(index, html)A function that returns an HTML string, DOM element(s), or jQuery object to insert at the beginning of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set.

The .prepend() method inserts the specified content as the first child of each element in the jQuery collection (To insert it as the last child, use .append()).

The .prepend() and .prependTo() methods perform the same task. The major difference is in the syntax—specifically, in the placement of the content and target. With .prepend(), the selector expression preceding the method is the container into which the content is inserted. With .prependTo(), 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 into the target container.

Consider the following HTML:

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

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

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

Each <div class="inner"> element gets this new content:

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

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

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

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

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

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

Additional Arguments

Similar to other content-adding methods such as .append() and .before(), .prepend() 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> as the first three child nodes of the body:

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

$('body').prepend($newdiv1, [newdiv2, existingdiv1]);

Since .prepend() 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: $('body').prepend($newdiv1, newdiv2, existingdiv1). The type and number of arguments will largely depend on how you collect the elements in your code.

Examples:

Example: Prepends some HTML to all paragraphs.

<!DOCTYPE html>
<html>
<head>
  <style>p { background:yellow; }</style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <p>there, friend!</p>

<p>amigo!</p>
<script>$("p").prepend("<b>Hello </b>");</script>

</body>
</html>

Demo:

Example: Prepends a DOM Element to 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'd say</p>
<p>is what I said</p>
<script>$("p").prepend(document.createTextNode("Hello "));</script>

</body>
</html>

Demo:

Example: Prepends a jQuery object (similar to an Array of DOM Elements) to 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 was said.</p><b>Hello</b>
<script>$("p").prepend( $("b") );</script>

</body>
</html>

Demo:

Support and Contributions

Need help with .prepend() 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 .prepend()? Report it to the jQuery core team.

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

* All fields are required
  • http://www.jqueryin.com Corey Ballou

    It's worth noting that prepend() supports passing in multiple objects as parameters.. i.e.:


    var $obj = $('<div id="object1" />');
    var $obj2 = $('<div id="object2" />');
    $('body').prepend($obj, $obj2);

  • A_hayden

    How would one prepend data from an external source?
    i.e.
    $(“#theparty”).prepend(“thetable.php?num=1″);

    would one need to load the “thetable.php?num=1″ into a variable first?

  • http://www.learningjquery.com/ Karl Swedberg

    You'd have to load the data first, probably with an Ajax method.

  • Lygia Ferreira

    .prepend() run in IE7? and in Safari?

    Tks

  • http://bobkerns.typepad.com/ Bob Kerns

    The documentation fails to specify the return value.

  • suggesto

    How about adding an example for the function usage.

  • Arch8emu

    prenpend(“<div> Hello </div>”) does not add div in IE but works fine in firefox. Any help is greatly appreciated.

    Thanks

  • Qbert

    awq=$('#show'); awe=$(“:first-child”, awq)[0];
    awe.prepend('

    Test

    ');

    awe.prepend is not a function.

    PLEASE HELP !!!

  • Jake

    Is there a javascript equivalent to the prepend method (like appendChild is to append)?

  • Jake

    Is there a javascript equivalent to the prepend method (like appendChild is to append)?