I have one button with image inside it. When I opening in the mobile device and holding a button, download image pop-up is coming.
How can I hide that pop-up?
<button><img src={test_image} width="100%" /></button>
I have one button with image inside it. When I opening in the mobile device and holding a button, download image pop-up is coming.
How can I hide that pop-up?
<button><img src={test_image} width="100%" /></button>
Use -webkit-touch-callout
will help you disable that behavior.
img {
-webkit-touch-callout: none;
}