jquery replace h3 tag with h4 tag code example
Example: javascript set header text
var headingDiv = document.getElementById("head");
headingDiv.innerHTML = "<H3>Public Offers</H3>";
//Or with jQuery
$(".head h3").html("your new header");
var headingDiv = document.getElementById("head");
headingDiv.innerHTML = "<H3>Public Offers</H3>";
//Or with jQuery
$(".head h3").html("your new header");