disable image download on android browser

1.9k Views Asked by At

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

1

There are 1 best solutions below

0
On

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.