Skip to content

Instantly share code, notes, and snippets.

View zachlankton's full-sized avatar
🎯
Focusing

Zach Lankton zachlankton

🎯
Focusing
View GitHub Profile
!function() {
var doc = document,
htm = doc.documentElement,
lct = null, // last click target
nearest = function(elm, tag) {
while (elm && elm.nodeName != tag) {
elm = elm.parentNode;
}
return elm;
};