Get HTML code
<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ var htmlStr = $("P").html(); $("DIV").text(htmlStr); }); </script> </head> <body> <body> <p class=blue>A</p> <DIV></DIV> </body> </html>