I'm just trying to get selecting a menu item from a <select>
list to be a 2 tap interaction vs. a 3 tap interaction.
Asked
Active
Viewed 762 times
1

desertnaut
- 57,590
- 26
- 140
- 166

Dakota Reese Brown
- 63
- 2
- 6
-
I've tried placing the events one might expect (onBlur, onChange, onClick, onFocus, onChange, onSelect, onMouseOver, onMove, onTouch) in the – Dakota Reese Brown Aug 30 '11 at 19:30
1 Answers
0
As the option
's are just values to the select
, you will normally register events to the select-element instead of the option-element. I'm not sure if this is even allowed via the DOM-spec, but I also can't find any reliable sources right now.
-
I know. The high-level issue is that Mobile Safari's implementation of the select element creates moments where one might expect events, but unfortunately events aren't generated by the DOM. – Dakota Reese Brown Aug 30 '11 at 23:18