Append Text node created by document.createTextNode in jQuery

Description

The following code shows how to append Text node created by document.createTextNode.

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 .  j  a  va  2 s.c  o  m-->
    $("p").html("<b>bold</b>");
    $("p b").append(document.createTextNode("added")).css("color", "red");
  });
</script>
</head>
<body>
<body>
  <p>ja va2s.com</p>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities