Categoria:
jQuerySnippet:
jQuery(document).ready(function($){
$('.single-post .eltdf-title-subtitle-holder h1').each(function(){
var newElem = $('<h4>', {html: $(this).html()});
$.each(this.attributes, function() {
newElem.attr(this.name, this.value);
});
$(this).replaceWith(newElem);
});
}); //fin jquery
Versiones:
Descripción: