views:

80

answers:

2

Hello guys

when we drag over an image, the image become selected. how can i disable this selection using jquery or javascript? I am trying to create a custom image crop script. i tried e.preventDefault() but it is not working in IE6, please help

Thank you

A: 

You could always just use a existing tool for that or look at the code to understand what it is you are missing.

Iznogood
A: 

There are also some css properties like -webkit-user-select: none; and -moz-user-select:none

antimatter15