Skip to content

Instantly share code, notes, and snippets.

@mindbreaker
Last active May 10, 2017 08:50
Show Gist options
  • Save mindbreaker/78702103ac97ca0c885dde1e5da27e9f to your computer and use it in GitHub Desktop.
Save mindbreaker/78702103ac97ca0c885dde1e5da27e9f to your computer and use it in GitHub Desktop.
H1 - H6 Headline Tester
$("h1,h2,h3,h4,h5,h6").each(function() {
console.log(Array(parseInt($(this).prop("localName").substring(1,2))*2).join("-") + " " + $(this).prop("localName") + " " + $(this).text().trim());
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment