Hacker News new | ask | show | jobs
by panzi 4244 days ago
PS: The monitorEvents helper function is a nice thing in Chrome. But that's not so hard to do inline using e.g.:

    foo.addEventListener("mousemove", function (event) { console.log(this,event); })
It's only a few characters more than:

    monitorEvents(foo,"mousemove")