laviastar / iscroll-js

Automatically exported from code.google.com/p/iscroll-js
MIT License
2 stars 2 forks source link

select tag is not working in <ul id="thelist"> #50

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. progamm          

<select name="count">
    <option >1</option>
    <option >2</option>
    <option >3</option>
</select>

into the first <li> tag in the <ul id="thelist">

What is the expected output? What do you see instead?
I can select a option

What version of the product are you using? On what operating system?
safari iPhone / Mac OSX
iscroll 3.7.1

Please provide any additional information below.
see sample attached file

Original issue reported on code.google.com by marcel.h...@gmail.com on 9 Mar 2011 at 4:31

Attachments:

GoogleCodeExporter commented 9 years ago
I added this to iscroll-lite @ line 180:

if (e.target.tagName == "SELECT") {  return;}
Problem solved for me in iscroll 4

Original comment by schizoduckie on 29 Mar 2011 at 12:24