In the previous example, we have seen how to add anchor tag to body using JQuery AppendTo Keyword. In the example we are going to see, how to append text to existing division.
Main Code:
$("<div class='NewClass'>Im new box by appendTo</div>").appendTo('#NewContent');
Complete Code:
<html> <head> <title></title> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> </head> <body> <div id='NewContent' style="color:Green"></div> <script type="text/javascript"> $("<div class='NewClass'>Im new box by appendTo</div>").appendTo('#NewContent'); </script> </body> </html>
Output:
How to add text to div using jquery |