Skip to content

Instantly share code, notes, and snippets.

@livingston
Last active August 29, 2015 14:06
Show Gist options
  • Save livingston/023bbe8692dbe0970171 to your computer and use it in GitHub Desktop.
Save livingston/023bbe8692dbe0970171 to your computer and use it in GitHub Desktop.
Get the list of all different font sizes on a page.
//requires jQuery & lodash
(function getAllFontSizes (fontSizes) {
$('*').each(function (i, n, s) { s = getComputedStyle(n)['font-size']; (s !== '0px') && fontSizes.push(s) });
console.log(_.chain(fontSizes).uniq().sortBy(function (v) { return parseInt(v, 10); }).join(', ').value());
}([]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment