Skip to content

Instantly share code, notes, and snippets.

View jtokoph's full-sized avatar
:octocat:
Meow

Jason Tokoph jtokoph

:octocat:
Meow
View GitHub Profile
@jtokoph
jtokoph / primer.js
Created August 4, 2010 02:49 — forked from makinde/primer.js
primer
!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;
};