How to avoid any image from dragging effect ? very easy just use these methods as given bellow -
Method 1 -
Suppose your image code is :
<img src="11.png" alt="11.png" title="11.png">
Add draggable attribue and your code will be -
<img draggable="false" src="11.png" alt="11.png" title="11.png">
( Not working use 2nd method )



