I have developed a web application in asp.net 3.5. It is consuming lot of javascript/JQuery events and working properly in normal browser in pc, but my client is saying that
There are touch events for a touch screen device:
touchstart: a finger is placed on a DOM element.
touchmove: a finger is dragged along a DOM element.
touchend: a finger is removed from a DOM element.
Maybe you want to try working with those. That being said, it is good to use events like change
(or onchange
inline with the element) for a drop down list because it is will work no matter what changes it (keyboard, mouse event or touch event).
Here is a resource to learn more.