Store a HTML snippet and insert it later in the document - Javascript jQuery

Javascript examples for jQuery:Document

Description

Store a HTML snippet and insert it later in the document

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://code.jquery.com/jquery-1.7.1.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){/*from   www .  j a v  a 2s.c o m*/
var html = '<b>Bold</b>'
$('.anotherclass').append(html);
    });

      </script> 
 </head> 
 <body> 
  <div class="myclass"> 
   <div class="anotherclass">
     Some dummy text 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials