Omar Lahlou
Omar Lahlou

Reputation: 1000

div tags are selectable in iOS app built with PhoneGap

I am building an app using PhoneGap and I've noticed that div tags are selectable as followingenter image description here

Does anyone know how to fix this?

Thanks

Upvotes: 1

Views: 66

Answers (1)

Ologho Cyril Paul
Ologho Cyril Paul

Reputation: 151

Add this to your CSS file

body
      {
         -webkit-touch-callout: none; 
         -webkit-user-select: none; /* Chrome all / Safari all */
         -moz-user-select: none; /* Firefox all */
         -ms-user-select: none;      /* IE 10+ */
           user-select: none;/* Likely future */
      }

Upvotes: 2

Related Questions