Javascript examples for jQuery:Tag Traversing
Get Dom object's content include itself
<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(){// www. jav a2s.c o m var s = $("#post").clone().wrap('<div>').parent().html(); console.log(s); }); </script> </head> <body> <div id="post"> <div> content </div> </div> <div></div> </body> </html>