Skip to content

Instantly share code, notes, and snippets.

@neto-developer
Created February 2, 2022 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neto-developer/6df358a40d12fe17737a9964f3dbe340 to your computer and use it in GitHub Desktop.
Save neto-developer/6df358a40d12fe17737a9964f3dbe340 to your computer and use it in GitHub Desktop.
Show all heading tags on page
$('h1,h2,h3,h4,h5,h6').each(function(){
console.log($(this).prop("tagName") + ' - ' + $(this).text().trim());
$(this).html($(this).prop("tagName") + ' - ' + $(this).html());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment