Insert text node
Description
The following code shows how to insert text node created from document.createTextNode after selected paragraph with .after() method.
Example
<!-- w w w .j av a 2 s.c om-->
<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() {
$("p").after(document.createTextNode("Hello"));
});
</script>
</head>
<body>
<body>
<p>a</p>
<b>b</b>
</body>
</html>