Replace element
Description
The following code shows how to replace element.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type='text/javascript'>
$(document).ready(function() {<!--from w w w . j a v a 2 s .c om-->
$('input#id1').click(function($e) {
$e.preventDefault();
$(this).replaceWith("<p>replaced</p>");
});
$('input#id2').click(function($e) {
$e.preventDefault();
$(this).replaceWith("<p>replaced</p>");
});
});
</script>
</head>
<body>
<div>
<input type='submit' id='id1' value='View Quote' />
</div>
<div>
<input type='submit' id='id2' value='View Quote' />
</div>
</body>
</html>