Skip to content

Instantly share code, notes, and snippets.

View juliojimenez's full-sized avatar
🤷‍♂️
I know nothing about nothing.

Julio Jimenez juliojimenez

🤷‍♂️
I know nothing about nothing.
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;
};