You can prevent scrolling in your UIWebView by including this javascript:
document.addEventListener("touchmove", touchMove, false);
function touchMove(event) {
event.preventDefault();
}
With scrolling disabled, your javascript should receive normal mousemove events.
cduhn
2010-04-09 23:49:00