0

Android/Phonegap, I create a pop window at index.html, when I touch move the content of pop window, the shadow of button will display. as picture display blow:

enter image description here

What's wrong with it?

Allen Heavey
  • 530
  • 2
  • 5
  • 16
  • Check http://stackoverflow.com/questions/11237936/mobile-web-disable-long-touch-taphold-text-selection – Bart Mar 12 '13 at 15:21
  • 1
    I have fixed it with css styles: -webkit-touch-callout: none; -webkit-tap-highlight-color: rgba(0,0,0,0); – Allen Heavey Mar 13 '13 at 03:32

1 Answers1

0

DMDGeeker is dam right! Thanks bro this code is working just fine! had to deal with this issue several minutes until i find your comment

 -webkit-touch-callout: none;
 -webkit-tap-highlight-color: rgba(0,0,0,0);
d1jhoni1b
  • 7,497
  • 1
  • 51
  • 37