how do I disable the functionality on Android browsers where a user can press and hold and image and bring up a "save image" popup dialog.
for ios devices, -webkit-touch-callout:none;
works, but this seems to have no effect on android browsers
how do I disable the functionality on Android browsers where a user can press and hold and image and bring up a "save image" popup dialog.
for ios devices, -webkit-touch-callout:none;
works, but this seems to have no effect on android browsers
Copyright © 2021 Jogjafile Inc.
attach an event handler for the click event which calls event.preventDefault(). At least this did work for me when using ICS´ default web browser, chrome beta and opera mobile.