Cranking some netsky for the first time, pretty good so far. 3 days ago
Physical mail: Hard to read? You want to read it. Easy to read? You don't want to read it. 4 days ago
@nikz It has 4 USB ports ;) but yea, it is a bit of an expensive option. 4 days ago
@nikz Would highly recommend a mac mini with HDMI. 4 days ago
49ers vs Giants http://t.co/XwaPQwsM 5 days ago
Clicking the document at a location
Can be done simply using JQuery:
$(document.elementFromPoint(x, y)).click();
Or natively in Webkit:
var el = document.elementFromPoint(x, y);
var ev = document.createEvent(“MouseEvents”);
ev.initEvent(“click”,true,true);
el.dispatchEvent(ev);
Why do I need to do this? Ah… iPhone development…
all comments older articles
Latest comments
none!