jQuery | insertAfter() with Examples
The insertAfter() is an inbuilt method in jQuery which is used to insert some HTML content after a specified element. The HTML content will be inserted after each occurrence of the specified element.
Syntax:
$(content).insertAfter(target)
Here the “content” is the HTML content which is to be inserted after the specified target.
Parameters: It takes a parameter “target” which is target after which the content is to be inserted.
Return Value: It doesn’t return any value.
Code #1:
<!DOCTYPE html> <html> <head> <script </script> <script> $(document).ready(function() { $("div").click(function() { // insertAfter $("<p>You should follow GeeksForGeeks</p>").insertAfter("p"); }); }); </script> </head> <body> <p>To learn jQuery : </p> <div>Click here to complete</div> </body> </html> |
Output:
Before clicking the div content-
To learn jQuery : Click here to complete
After clicking the div content-
To learn jQuery : You should follow GeeksForGeeks Click here to complete
Code #2:
<!DOCTYPE html> <html> <head> <script </script> <script> $(document).ready(function() { $("div").click(function() { // insertAfter $("<p>You should follow GeeksForGeeks</p>").insertAfter("p"); }); }); </script> </head> <body> <p>To learn jQuery : </p> <p> To learn coding : </p> <div>Click here to complete</div> </body> </html> |
Output:
Before clicking the div content-
To learn jQuery : To learn coding : Click here to complete
After clicking the div content-
To learn jQuery : You should follow GeeksForGeeks To learn coding : You should follow GeeksForGeeks Click here to complete
Recommended Posts:
- jQuery | after() with Examples
- jQuery | first() with Examples
- jQuery | on() with Examples
- jQuery | has() with Examples
- jQuery | last() with Examples
- jQuery | val() with Examples
- jQuery | eq() with Examples
- jQuery | one() with Examples
- jQuery | replaceWith() with Examples
- jQuery | resize() with Examples
- jQuery | replaceAll() with Examples
- jQuery | scrollLeft() with Examples
- jQuery | scrollTop() with Examples
- jQuery | removeAttr() with Examples
- jQuery | removeProp() with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



