Skip to content

Instantly share code, notes, and snippets.

@rockerBOO
rockerBOO / whatthefont.js
Created October 11, 2019 15:57 — forked from matthewmayer/whatthefont.js
paste this into Javascript console to see what fonts are being used
function walk(node) {
// I stole this function from here:
// http://is.gd/mwZp7E
var child, next;
var tagName = node.tagName ? node.tagName.toLowerCase() : "";
if (tagName == 'input' || tagName == 'textarea') {
return;
}