Skip to content

Instantly share code, notes, and snippets.

View ryoshu's full-sized avatar

Ricky Bacon ryoshu

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;
};