jQuery after() method is used to insert specified content after the selected element.
Below the syntax of after() :
$(selector).after('content')
jQuery after() method is used to insert specified content after the selected element.
Below the syntax of after() :
$(selector).after('content')
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery after()</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("#button").click(function() {
$("span").after(" Saarthak");
});
});
</script>
</head>
<body>
<span>Hello</span><br /><br />
<button style="margin:0 0 10px 0" class="btn" id="button">Click here</button><br />
</body>
</html>