replaceWith(content): Replaces all matched elements with the specified HTML or DOM elements. : replaceWith « jQuery « JavaScript DHTML






replaceWith(content): Replaces all matched elements with the specified HTML or DOM elements.

  

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

              $("button").click(function () {
                  $(this).replaceWith("<div>" + $(this).text() + "</div>");
                });
                
         
        });
    </script>


    
  </head>
  <body>
    <body>
          <button>First</button>
                 
    </body>
</html>

   
    
  








Related examples in the same category

1.Replace text with
2.Replace with another tag
3.Replace a button with text
4.Replace all with