Replace text with : replaceWith « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
              $("p").replaceWith("<div>" + $(this).text() + "</div>");



        });
    </script>

    <style>
      div { border:2px green solid;}
    </style>
  </head>
  <body>
    <body>
       <p>Hello</p>

    </body>
</html>








30.89.replaceWith
30.89.1.Replace text with
30.89.2.Replace with another tag
30.89.3.replaceWith(content): Replaces all matched elements with the specified HTML or DOM elements.