Sathya
Sathya

Reputation: 5308

jquery mobile event taphold on image

I added 'taphold' jquerymobile event for an image. When i taphold on that image in ipad i am getting the below pop up which is thrown by browser. How to avoid this?

enter image description here

Upvotes: 1

Views: 561

Answers (2)

Sathya
Sathya

Reputation: 5308

This helps

  img
  {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
   }

Upvotes: 1

Boyds
Boyds

Reputation: 441

This might be a long shot but try CSS rule

-webkit-user-select: none;

It may prevent the popup from appearing.

Hope it helps :)

Upvotes: 2

Related Questions