I'm building a touchscreen kiosk using Chrome (7.0.536.2 dev) in kiosk mode on a Windows 7 PC with multi-touch display.
I can see that the ontouchstart event is available (by inspecting the window object in Webkit Web Inspector) but it never fires. If I write the following code, the onclick event fires when I touch the screen but the ontouchstart event doesn't.
window.onclick = function() { alert("click"); }
window.ontouchstart = function() { alert("touchstart"); }
In Firefox 4 the MozTouchDown event fires without any problems.
Are these events not yet available to JavaScript?