.after()

jQuery

.after()


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

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

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

    • content
      HTML string, DOM element, or jQuery object to insert after each element in the set of matched elements.
    • content
      One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements.
  • version added: 1.4.after( function(index) )

    • function(index)
      Type: Function()
      A function that returns an HTML string, DOM element(s), or jQuery object to insert after 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 .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.

Using the following HTML:

1
2
3
4
5
                                
<div class="container">
<h2>Greetings</h2>
<div class="inner">Hello</div>
<div class="inner">Goodbye</div>
</div>

Content can be created and then inserted after several elements at once:

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

Each inner <div> element gets this new content:

1
2
3
4
5
6
7
                                
<div class="container">
<h2>Greetings</h2>
<div class="inner">Hello</div>
<p>Test</p>
<div class="inner">Goodbye</div>
<p>Test</p>
</div>

An element in the DOM can also be selected and inserted after another element:

1
                                
$('.container').after($('h2'));

If an element selected this way is inserted into a single location elsewhere in the DOM, it will be moved rather than cloned:

1
2
3
4
5
                                
<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.

Inserting Disconnected DOM nodes

As of jQuery 1.4, .before() and .after() will also work on disconnected DOM nodes. For example, given the following code:

1
                                
$('<div/>').after('<p></p>');

The result is a jQuery set containing a div and a paragraph, in that order. That set can be further manipulated, even before it is inserted in the document.

1
2
3
4
                                
$('<div/>').after('<p></p>').addClass('foo')
.filter('p').attr('id', 'bar').html('hello')
.end()
.appendTo('body');

This results in the following elements inserted just before the closing </body> tag:

1
2
                                
<div class="foo"> </div>
<p class="foo" id="bar">hello</p>

Passing a Function

As of jQuery 1.4, .after() supports passing a function that returns the elements to insert.

1
2
3
                                
$('p').after(function() {
return '<div>' + this.className + '</div>';
});

This example inserts a <div> after each paragraph, with each new <div> containing the class name(s) of its preceding paragraph.

Additional Arguments

Similar to other content-adding methods such as .prepend() and .before(), .after() 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> after the first paragraph:

1
2
3
4
5
                                
var $newdiv1 = $('<div id="object1"/>'),
newdiv2 = document.createElement('div'),
existingdiv1 = document.getElementById('foo');
$('p').first().after($newdiv1, [newdiv2, existingdiv1]);

Since .after() 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().after($newdiv1, newdiv2, existingdiv1). The type and number of arguments will largely depend on the elements that are collected in the code.

Examples:

Example: Inserts some HTML after all paragraphs.

1
2
3
4
5
6
7
8
9
10
11
12
                                  
<!DOCTYPE html>
<html>
<head>
<style>p { background:yellow; }</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<p>I would like to say: </p>
<script> $("p").after("<b>Hello</b>"); </script>
</body>
</html>

Example: Inserts a DOM element after all paragraphs.

1
2
3
4
5
6
7
8
9
10
11
12
                                  
<!DOCTYPE html>
<html>
<head>
<style>p { background:yellow; }</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<p>I would like to say: </p>
<script> $("p").after( document.createTextNode("Hello") ); </script>
</body>
</html>

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

1
2
3
4
5
6
7
8
9
10
11
12
                                  
<!DOCTYPE html>
<html>
<head>
<style>p { background:yellow; }</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<b>Hello</b><p>I would like to say: </p>
<script> $("p").after( $("b") ); </script>
</body>
</html>