I need to put an image in my page. I want to disable dragging of that image. I am trying lot of things but no help. Can somebody help me out ?
I don't want to keep that image as a background-image because I am resizing the image.
|
I need to put an image in my page. I want to disable dragging of that image. I am trying lot of things but no help. Can somebody help me out ? I don't want to keep that image as a background-image because I am resizing the image. |
|||||
|
|
Why do you want to stop dragging it? So people don't steal it? In that case, you are fighting a battle that has already been lost. But you can like this...
See it working (or not working, rather) It seems you are using jQuery.
|
|||||||||||||
|
|
I tried myself and found this is working.
I am sure this disables dragging of all the images. Not sure it effects something else. |
|||||||||||||
|
|
|||||||||
|
|
CSS only solution: use |
|||||||||
|
|
Since my images were created using ajax, and therefore not available on windows.load.
This way I can control which section blocks the behavior, it only uses one event binding and it works for future ajax created images without having to do anything. With jQuery new
|
||||
|
Great solution, had one small issue with conflicts, If anyone else has conflict from other js library simply enable no conflict like so.
Hope this helps someone out. |
|||
|
|
|
You can add the following to each image you don't want to be draggable, (inside the
e.g.
|
||||
|
|
|
This code does exactly what you want. It prevents the image from dragging while allowing any other actions that depend on the event.
|
|||
|
|
|
Well, this is possible, and the other answers posted are perfectly valid, but you could take a brute force approach and prevent the default behavior of Something like this:
|
|||
|
|
|
I had some images that I did not want to be draggable in the browser. I made them jQuery draggable objects, but put each of them inside a very small containment object (e.g. the container was the TD tag the images resided in). jQuery code is pretty simple. I later discovered that putting a separate SPAN tag around the images and making the SPAN the container worked best. I could not do a blanket blocking of dragging, as there were other images that I very much wanted to be draggable. |
||||
|
|
|
just add draggable="false" to your image tag:
IE8 and under doesn't support however. |
|||
|
|