Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created August 14, 2015 08:28
Show Gist options
  • Save ABooooo/03647636e0b9b57ca29f to your computer and use it in GitHub Desktop.
Save ABooooo/03647636e0b9b57ca29f to your computer and use it in GitHub Desktop.
change html tag
/* change h3 to h2 in blog list view */
$(function() {
$('.news-list-view h3').each(function(i, em) {
$(em).replaceWith('<h2>'+$(em).html()+'</h2>');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment