Change Bold and COpy

by Yubraj Pokharel

HTML

<script src="https://code.jquery.com/jquery-1.9.1.js"></script>

<p><b>Test</b> Paragraph.</p>
<p></p>

CSS

p {
color: blue;
margin: 8px;
}
b {
color: red;
}

JavaScript

$(document).ready(function(){
	var text = $("p").first().text();
   var target = $("p:last()");
   target.text(text);
});