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