JQuery JavaScript Tutorial

< html>
  
    
    
$(document).ready(
  function() {
    $('input#id1').click(
      function($e) {
        $e.preventDefault();
        $(this).replaceWith(
          "

replaced

"
        );
      }
    );
    $('input#id2').click(
      function($e) {
        $e.preventDefault();
        $(this).replaceWith(
          "

replaced

"
        );
      }
    );
  }
);