Skip to content

Instantly share code, notes, and snippets.

View bofrede's full-sized avatar

Bo Frederiksen bofrede

View GitHub Profile
@bofrede
bofrede / getLanguage.js
Last active August 30, 2015 07:54
function for getting the lang attribute of an element or that of it's ancestors
function getLanguage(elm) {
if (elm) {
return elm.getAttribute('lang') || getLanguage(elm.parentNode);
} else {
// TODO: find <meta http-equiv="Content-Language" content="da">
return null;
}
}