Armanoide
Armanoide

Reputation: 1344

The input textarea don't work with mobile on JQuery mobile

I use JQuery mobile to develop an Web-App. On computer textarea work fine. When i test on IOS device, i get the popup keyboard but i can't type anything.


HTML

<label for="msg">Observations:</label>
<textarea name="msg" id="obs"></textarea>

info :

Any help would be greatly appreciated =)

Upvotes: 0

Views: 2843

Answers (1)

Armanoide
Armanoide

Reputation: 1344

like @yuriy-kvartsyanyy said the problem come from something else. In my case, it's came from css :

style.css

* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

I added this line in my css to solve my problem

style.css

textarea {
    -webkit-user-select: auto;
}

Upvotes: 4

Related Questions