Input error with keyboard on Galaxy S2 using jQuery Mobile and Phonegap

后端 未结 6 1650
天涯浪人
天涯浪人 2021-02-07 08:23

We are developing a mobile web app in jQuery Mobile 1.0.1 and Phonegap 1.4.1 and have run into issues with the keyboard on the galaxy s2.

We have a menu which slides out

6条回答
  •  再見小時候
    2021-02-07 08:57

    You probably have

    -webkit-user-select: none;
    

    In your CSS somewhere. If you enable text selection for inputs

    input, textarea { -webkit-user-select: text; }
    

    it works again!

提交回复
热议问题