Wrap tag to another tag : contents « jQuery « JavaScript DHTML






Wrap tag to another tag

    

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
           $("p").contents().filter(function(){ return this.nodeType != 1; }).wrap("<b/>");

        });
    </script>
  </head>
  <body>
    <body>
        <p>Hello <span>span</span>data</p>

  </body>
</html>

   
    
    
    
  








Related examples in the same category

1.Get tag content
2.contents() finds all the child nodes inside the matched elements