jQuery modify text code example
Example 1: jquery set text of h1
$('#id').text("New Text");
Example 2: To set the text of button using Jquery
BY LOVE
$('#btnid').text('Show');
Example 3: jquery button text
$("#my-button").attr("value", "Button Text");
Example 4: 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 5: change p text jqwuery
.text("new text")