jquery replace h1 with h2 code example
Example: jquery replace h1 with h2
$(selector).load(url, function(){ // your existing load function
$(selector).find('h1').replaceWith(function() {
return '' + $(this).text() + '
';
});
});