jquery set p text code example
Example 1: jquery change text
$(yourElement).html("New text");
var text = $(yourElement).html();
Example 2: jquery get element innertext
const copiedText = $('#element').text();
Example 3: change text of paragraph jquery
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>text demo</title>
<style>
p {
color: blue;
margin: 8px;
}
b {
color: red;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<p id="pda">Salom html.</p>
<p></p>
<script>
$("#pda").html("New text");
</script>
</body>
</html>
Example 4: jquery display text in div
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>text demo</title>
<style>
p {
color: blue;
margin: 8px;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<p>Test Paragraph.</p>
<script>
$( "p" ).text( "<b>Some</b> new text." );
</script>
</body>
</html>