Reputation: 419
My page has select tag with onclick=""
event:
<select onclick="OnChange()">
It works only on the second click with mobile Safari - other browsers work fine.
How to get the first onclick
event with mobile Safari?
Upvotes: 2
Views: 599
Reputation: 53208
Why not just use the onChange
attribute instead. It's more suited to what you want. Also, using onClick
doesn't factor in tabbed access to the field...
Upvotes: 1