Insert hardcoded HTML after
Description
The following code shows how to insert hardcoded HTML after all paragraphs.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!--from w w w. jav a 2 s. com-->
$("p").after("<b>Hello</b>");
});
</script>
</head>
<body>
<body>
<p>java2s.com</p>
</body>
</html>