jQuery after() Method

jQuery | after() Method: Learn about the jQuery after() Method with its usages, syntax, and examples.
Submitted by Pratishtha Saxena, on October 15, 2022

after() Method

Sometimes it is necessary to access a particular element on the web page. Not only that, at times there is a need to add, remove, or manipulated the text and the content using jQuery. When we need to add some content or text to an HTML document, there are various methods for it using jQuery. One of them is - the after() method. This method is a lot similar to the before() in jQuery, but the difference is that this method helps you to add the content right after the selected element. The content that has to be added can be specified over here.

after() Method Syntax

$('selector').after('content',function());

The element is selected using the selector. This method takes two parameters – content, and function. The content is the text or data that you wish to provide over there. The function is an optional parameter. When the content is specified within the after() method, then it can have any HTML tag, CSS properties, jQuery objects, and DOM elements in it.

Hence, this method is useful to add any type of content after the targeted location. It will add the specified content after all the matched elements with the selector. The below-provided example will help to understand the implementation of the after() method more easily. The content gets added as many times as the button is clicked.

jQuery after() Method Example

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
    <title>Document</title>
  </head>
  <body>
    <h2>jQuery - After</h2>
    <p>Click the button to add some content After the image.</p>
    <button>Click Here</button>
    <hr>
    <img id="myImg" src="https://media.istockphoto.com/photos/mountain-landscape-picture-id517188688?k=20&m=517188688&s=612x612&w=0&h=i38qBm2P-6V4vZVEaMy_TaTEaoCMkYhvLCysE7yJQ5Q=">
    <h3></h3>
  </body>
  
  <script type="text/javascript">
    $(document).ready(function(){
       $('button').click(function(){
           $('img').after('<h3 style="color: #C66102">Thanks for visiting Include Help !!!</h3>')
       })
    });
  </script>
</html>

Output:

Example 1: jQuery after() Method



Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.