jquery how to change a text of an element code example
Example 1: 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 2: change p text jqwuery
.text("new text")