Reputation: 19534
In a web application I'm working on, I decided to consolidate a few buttons by turning them into select elements of one dropdown list, with onClick events loading for each option pressed. However, this does not work in iOS (Safari on the iPhone). Is there a different event I can use to grab menu selection from Safari for iPhone?
Upvotes: 2
Views: 2294
Reputation: 15154
Try onchange:
<select name="foo" onchange="bar();">
<!-- etc. -->
Upvotes: 3