Open In App

How to insert some HTML after all paragraphs using jQuery ?

Last Updated : 31 Dec, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we will insert some HTML content after all paragraphs using jQuery. To add some content after all paragraph elements, we use the after() method. This method is used to insert the specified content after each selected element in the set of matched elements.

Syntax:

$( selector ).after( content );

Example:

HTML




<html>
<head>
  <!-- Import jQuery from CDN -->
  <script src=
  </script>
  
  <script>
    $(document).ready(function () {
      $("button").click(function () {
        $("p").after(
          '<p>Welcome to GFG</p>
          <input type="text">'
        );
      });
    });
  </script>
</head>
<body style="text-align: center;">
  <h1 style="color: green;">
    GeeksforGeeks
  </h1>
  
  <h3>
    How to insert some HTML after
    all paragraphs using jQuery?
  </h3>
    
  <p>
    GeeksforGeeks computer 
    science portal
  </p>
  
  <button>Click Here!</button>
</body>
</html>


Output:

Before clicking the button:

After clicking the button:



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads