Skip to content

Instantly share code, notes, and snippets.

@keriati
Last active December 11, 2015 14:09
Show Gist options
  • Save keriati/4612522 to your computer and use it in GitHub Desktop.
Save keriati/4612522 to your computer and use it in GitHub Desktop.
List all Headings on a Page to the console.
(function(){$('h1,h2,h3,h4,h5').each(function(){var t=$(this),n=t[0].tagName,i=parseInt(new String(n).substr(1,1));console.log(new Array(i).join(' ')+n+': '+t.text().replace(/\s{2,}/g,' '));});})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment