change inner text jquery code example

Example 1: jquery replace innerhtml

$("#myID").html("<div>New inner html</div>"); //replace element innerHTML in jQuery

Example 2: jquery set text of h1

$('#id').text("New Text");

Example 3: jquery change text

$(yourElement).html("New text");
//sets yourElement innerHTML to "New text"
var text = $(yourElement).html();
//html() returns the text inside yourElement if you pass no parameters

Example 4: jquery get element innertext

const copiedText = $('#element').text();

Example 5: change p text jqwuery

.text("new text")