When I hover hold on an image on mobile following options appears:
- Save Image
- Open Image
- Open Image in new tab.
How can I disable these options?
I googled and got the below code which is not working
.disableSave {
-webkit-user-select:none;
-webkit-touch-callout:none;
}
When I hover hold on an image on mobile following options appears:
- Save Image
- Open Image
- Open Image in new tab.
How can I disable these options?
I googled and got the below code which is not working
.disableSave {
-webkit-user-select:none;
-webkit-touch-callout:none;
}
Share
Improve this question
edited Mar 23, 2017 at 13:26
morten.c
3,5155 gold badges42 silver badges47 bronze badges
asked Oct 25, 2013 at 10:37
Sheldon CooperSheldon Cooper
2461 gold badge4 silver badges17 bronze badges
5
- "on mobile" - What OS? What browser? – Thew Commented Oct 25, 2013 at 10:45
- i use samsung grand.... android – Sheldon Cooper Commented Oct 25, 2013 at 10:51
- 1 That answered none of my questions. You're using Samsung. So I figure you're using Android? What version of android? And on Android, do you use the stock android browser or something else? – Thew Commented Oct 25, 2013 at 10:53
- i am looking for generalized solution not for particular android...........i gues above solution works for ios – Sheldon Cooper Commented Oct 25, 2013 at 11:03
- I know, but what did you test it on? – Thew Commented Oct 25, 2013 at 11:09
3 Answers
Reset to default 9Simple solution.
For iOS, use the following:
.disableSave {
-webkit-user-select:none;
-webkit-touch-callout:none;
}
For Android, use:
oncontextmenu="return false;";
I used the following CSS and disabled image select + save in mobile and desktop browsers.
img {
pointer-events: none;
}
Things like this are tricky, because when your phone / browser loads the page, it will download the images, e.g. user will have all the images in cache anyways, usually functions using right click can be disabled with JS, however there is no full-proof way of actually disabling right click functionality, on a phone however, you can set the image as background-image
which basicly if you hold down on it, won't trigger a download, and since there is no developermode for phones, they can't simply inspect element either to get the image source (The exception to that are iOS devices when coupled with a mac using safari).