I\'ve very new to HTML/Java but am learning...
I want to develop a button on an iphone that runs a java script command when press and when it is released. I\'ve don
The equivalent for onmousedown on touchscreen devices is ontouchstart, and the equivalent of onmouseup is ontouchend.
onmousedown
ontouchstart
onmouseup
ontouchend
If you would also like to detect dragging, you could use ontouchmove which is fired every time you move your finger after touching the screen.
ontouchmove