Is there a way to prevent this in Firefox 4.0 using CSS? It's where you click on a link (or anything) and begin to drag it, and another semi-transparent image of it appears under your cursor as you drag...

Looks something like this:

enter image description here

link|improve this question

You'll probably need to do something with javascript. – toor May 20 '11 at 0:23
1  
I use the drag feature all the time to drop a link on the window and/or tab where I want it opened. I wouldn't like it to be disabled. – Stephen P May 20 '11 at 0:36
Yeah, I know, but it's only a few links that bother me... and I doubt they'd be dragged anyway! – Kevin Hikaru Evans May 20 '11 at 0:41
Why though? Every site not restricting drags has this. It's not like users go around dragging every element and blame you. IMO, it's something that shouldn't be bothered with. – TheCloudlessSky May 20 '11 at 0:44
It's not specific to FF4. I'm pretty sure that all browsers do this. – jnpcl May 20 '11 at 0:48
feedback

3 Answers

up vote 5 down vote accepted

Draggable link:

<a href="#">Link</a>

Non-draggable link:

<a href="#" draggable="false">Link</a>

Example.

link|improve this answer
2  
Love it when it's easy. Just to reiterate some of the comments on the question, you probably shouldn't use this just because the browser functionality "bothers you". – Bryan Downing May 20 '11 at 1:25
@BryanDowning Absolutely, however it does make sense for links, like this example, which don't actually go anywhere (though, of course, that's not a great example of best practice either ;) ) – robertc May 20 '11 at 1:35
feedback

I have not found a CSS solution yet (I will keep looking), but in the meantime, I found a JavaScript solution in the Mozilla Developer Center's article on Drag Operations. It may be of use to you.

link|improve this answer
Unfortunately, I can't find any CSS property/value capable of disabling the drag preview -- neither standard nor Mozilla-specific. Sorry. :\ – DavidJCobb May 20 '11 at 0:39
Thanks. I guess I can either just use JS or just live with it anyway! – Kevin Hikaru Evans May 20 '11 at 0:39
feedback

This is not specific to Firefox 4. See this screenshot from my FF 3.6:

enter image description here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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