How to disable image selection using jQuery?

when we drag the image, the image is selected. how can i turn off this selection using jquery or javascript? I am trying to create a custom script image. I tried e.preventDefault() but it does not work in IE6, please help

thanks

+4
source share
2 answers

There are also some css properties, such as -webkit-user-select: none; and -moz-user-select: none

+7
source

You can always just use an existing tool for this or look at the code to understand what you are missing.

+1
source

All Articles