Skip to content

Instantly share code, notes, and snippets.

View wmanley's full-sized avatar

William Manley wmanley

  • stb-tester.com
  • London
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;
};