assing btn text in jquery code example
Example 1: To set the text of button using Jquery
BY LOVE
$('#btnid').text('Show');
Example 2: 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