jquery changing text code example
Example 1: jquery set text of h1
$('#id').text("New Text");
Example 2: jquery change text of div
$('#dialog_title_span').text("new dialog title");
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: change p text jqwuery
.text("new text")