<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>text and html</title>
</head>
<body>
<p class = "blue"><em>Emphasis</em> Me</p>
<p><b>Hello</b></p>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>
/*Downloaded from https://www.codeseek.co/100974736/text-and-html-amVZdo */
var placeHolderStr = $(".blue").html();
var secondP = $("p:last");
//console.log(secondP);
//$("p:last").html(placeHolderStr);
secondP.text(ceva);