joehewitt / scrollability

Imitates iOS native scrolling in JavaScript.
http://joehewitt.github.com/scrollability
Other
1.78k stars 147 forks source link

Form select inputs not working #10

Open jwellner opened 13 years ago

jwellner commented 13 years ago

When you use select inputs in the scrollable area you are unable to change them.

dhawalk commented 13 years ago

I have a temporary solution for this. I added the following code in touchStart function. I am kinda sure that this is not a good solution but it works.

if(event.target.nodeName !== 'SELECT')
        event.preventDefault();