Javascript examples for jQuery:Document
Store a HTML snippet and insert it later in the document
<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>