jquery change h2 text code example
Example 1: jquery set text of h1
$('#id').text("New Text");
Example 2: jquery replace h1 with h2
$(selector).load(url, function(){ // your existing load function
$(selector).find('h1').replaceWith(function() {
return '<h2>' + $(this).text() + '</h2>';
});
});