jQuery insertAfter() Method - CodingTag
×


jQuery insertAfter()

1279

  • This jQuery method is used to add the given content after the selected HTML elements means this method insert a new element specified by the user after the every matched element.

Related Topics:

jQuery before
jQuery after

jQuery insertafter

Note:

insert() and insertAfter() both jQuery methods are used for same work but the only difference between these methods is in their syntax.

Syntax:

$(content).insertAfter(selector);

Parameter description:

  • content: This represents the contents which to be insert after the selected elements. It is mandatory and must contain HTML tags. If the content is already exists on the webpage then it will be moved after the selected element.
  • selector: selector represents a jQuery selector that is used to select the HTML element after which the content to be inserted.
Note:

If you want to insert the content before the selected elements then use insertBefore() method.

Example:

<html>
<head>
<title> jQuery Example </title>
<script type = "text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">
</script>
<style>
.para1{
background:pink;
padding:10px;
}
button{
background:green;
padding:10px;
color:white;
border:1px solid green;
}
</style>
<script>
$(document).ready(function(){
$("button").click(function(){
$text="<p class='para1'>This is the newly inserted paragraph.</p>";
$($text).insertAfter("h3");
});
});
</script>
</head>
<body>

<h2> jQuery insertAfter() method Example </h2>
<h3> This is heading1. </h3>
<h3> This is heading2. </h3>
<button> Click me! </button>
</body>
</html>

Output:

When you click the button,



Best WordPress Hosting


Share:


Discount Coupons

Get a .COM for just $6.98

Secure Domain for a Mini Price



Leave a Reply


Comments
    Waiting for your comments