Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
6  
@AgentConundrum - There is no problem for me if the user saves and does whatever he wants. My only requirement is to not to drag that image. – User 1034 Nov 18 '10 at 8:45

11 Answers

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...

document.getElementById('my-image').ondragstart = function() { return false; };

See it working (or not working, rather)

It seems you are using jQuery.

$('img').on('dragstart', function(event) { event.preventDefault(); });
share|improve this answer
3  
@alex - The purpose of not have image dragging is not stealing the image. The purpose is completely different. I am making that image as sortable and droppable. So it takes a long time to explain it. – User 1034 Nov 18 '10 at 5:29
1  
@alex - Is ondragstart is browser independent ? – User 1034 Nov 18 '10 at 5:34
@Multiplexer It seems to be except for < Firefox 3.5 – alex Nov 18 '10 at 5:37
@alex - You too mate sorry about that. The comments became irrelevant after the flurry of edits and after it turned out my answer hadn't been ripped off. – Steve Nov 18 '10 at 5:45
up vote 12 down vote accepted

I tried myself and found this is working.

$("img").mousedown(function(){
    return false;
});

I am sure this disables dragging of all the images. Not sure it effects something else.

share|improve this answer
2  
Ah! You should've mentioned you were using jQuery/could use jQuery. +1 for using jQuery. – Alex Nov 18 '10 at 5:37
@alex - I am sorry. I was trying it my self. And I am not sure it effects something else. – User 1034 Nov 18 '10 at 5:39
you are fine! No, as far as I know, doing what you have here should not have any negative effects on anything else. – Alex Nov 18 '10 at 5:40
@Alex - Thank you so much. This forum is helping me in learning so many things. Thanks a lot to this forum. – User 1034 Nov 18 '10 at 5:45
What if the image is wrapped inside an <a> tag? Then if the user clicks the image, the link wouldn't get clicked. – DJDavid98 11 hours ago
window.ondragstart = function() { return false; } 
share|improve this answer
+1 Don't understand the downvotes. It's not the ultimate solution, while it prevents dragging all, not only a special image. But it shows the right direction(and I think it was the first answer which does it) – Dr.Molle Nov 18 '10 at 5:49
@DrMolle It may have been in response to the (since deleted) comments left by Steve on my answer. – alex Nov 18 '10 at 5:59
1  
Remember that sometimes people will drag a link to their bookmarks bar -- this solution would remove this ability. – jClark Dec 6 '12 at 15:16

CSS only solution: use pointer-events: none

https://developer.mozilla.org/en-US/docs/CSS/pointer-events

share|improve this answer
1  
This is the best solution to this problem. – Shane Jan 22 at 18:35
But this lead to the weird selection effect in FF atleast. Better still return false; – Bhumi Singhal Feb 22 at 10:24
it is not used when image as link. – Nilesh patel 2 days ago

Since my images were created using ajax, and therefore not available on windows.load.

$("#page").delegate('img', 'dragstart', function (event) { event.preventDefault(); });

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 on binding:

$('#page').on('dragstart', 'img', function(event) { event.preventDefault(); }); (thanks @ialphan)

share|improve this answer
Using .on it will be like this: $(document).on('dragstart','img',function(e){e.preventDefault();}); – ialphan Oct 2 '12 at 20:46
This is the correct solution. One event binding for unlimited img elements, present or future. Least intensive, most robust. – dg988 Apr 29 at 14:38

Great solution, had one small issue with conflicts, If anyone else has conflict from other js library simply enable no conflict like so.

var $j = jQuery.noConflict();$j('img').bind('dragstart', function(event) { event.preventDefault(); });

Hope this helps someone out.

share|improve this answer
This is more commentary, not really worth an answer by itself. – alex Dec 29 '12 at 1:10

You can add the following to each image you don't want to be draggable, (inside the img tag):

onmousedown="return false;"

e.g.

img src="Koala.jpg" onmousedown="return false;"
share|improve this answer

This code does exactly what you want. It prevents the image from dragging while allowing any other actions that depend on the event.

$("img").mousedown(function(e){ e.preventDefault() });

share|improve this answer

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 mousedown on images. Which, is to start dragging the image.

Something like this:

function noDrag(e) {  
    e.preventDefault();  
} 

window.onload = function (e) {  
    var evt = e || window.event;                 
    if (evt.preventDefault) {    
        var images = document.getElementsByTagName('img');   
        for (var i = 0; i < imgs.length; i++) {    
            imgs[i].onmousedown = noDrag;  
        }  
    }  
};  
share|improve this answer

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.

share|improve this answer

just add draggable="false" to your image tag:

<img draggable="false" src="image.png">

IE8 and under doesn't support however.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.