jQuery API

.insertAfter()

.insertAfter( target ) Returns: jQuery

Description: Insert every element in the set of matched elements after the target.

  • version added: 1.0.insertAfter( target )

    targetA selector, element, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter.

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

Consider the following HTML:

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

We can create content and insert it after several elements at once:

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

Each inner <div> element gets this new content:

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

We can also select an element on the page and insert it after another:

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

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

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

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

Example:

Inserts all paragraphs after an element with id of "foo". Same as $("#foo").after("p")

<!DOCTYPE html>
<html>
<head>
  <style>#foo { background:yellow; }</style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <p> is what I said... </p><div id="foo">FOO!</div>
<script>$("p").insertAfter("#foo"); // check after() examples</script>

</body>
</html>

Demo:

Support and Contributions

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

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

* All fields are required
  • engel
    what is the difference bet insertAfter() nad appendTo()
  • Toxigaxx
    .insertAfter() inserts an element AFTER another element, while .appendTo() insert elements INTO another element.

  • Bodyscanner
    What is best practice for inserting an HTML entity, eg:
    $('>').insertAfter('a')?
  • Please use the forum for such questions. http://forum.jquery.com/
    thanks.
  • Jeremy
    Do events attached to an element moved with insertAfter() move with it as well?