When I hover hold on an image on mobile following options appears:
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;
}
Simple 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;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With