appending element to created DOM element - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:append

Description

appending element to created DOM element

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){/*from w  w w .j a  va 2  s .c o  m*/
var $hello = $('<div></div>');
$hello.append('<p id="1234">Hello</p>');
$hello.append('<p>Goodbye</p>');
$('#content').append($hello);
    });

      </script> 
 </head> 
 <body> 
  <div id="content"></div>  
 </body>
</html>

Related Tutorials