Replace with hard coded element
Description
The following code shows how to replace with hard coded tag.
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() {<!-- w ww .j a v a 2 s. com-->
$("p").replaceWith("<b>Paragraph. </b>");
});
</script>
<style>
div {
border: 2px green solid;
}
</style>
</head>
<body>
<p>Hello java2s.com</p>
</body>
</html>