I'm trying to make a calendar page where you can click and drag to select multiple calendar days at once. Everything works fine in Google Chrome, but in Firefox, when I try to start dragging, it fails. The reason for this is that each calendar day is contained in a link (<a></a>). When you try to drag links in Firefox, it does its own action. Is there any way I can prevent this or work around it?
|
|
||||
|
|
|
I ran into this issue, saw your thread. In my case, I handling the lower level mouse events, not click. I found that on jQuery's mousedown (http://docs.jquery.com/Events/mousedown#fn) I could suppress Firefox's special behavior calling event.preventDefault (http://docs.jquery.com/Events/jQuery.Event#event.preventDefault.28.29) on the incoming mouse event. I was calling it on other event handlers, but I suspect just mousedown() is sufficient to stop browsers from doing their custom drag behavior. |
|||
|
|
Hmmm well maybe it's kinda late for this. But if you hadn't put this topic maybe I would have never resolved this. I had the same problem so I started to draw in my head how the events is working on. The environment is this: our draggable item:
our droppable item:
So here is it:
(I'm using jQuery and jQuery ui from the wordpress folder so that's why the first line use "jQuery" statement instead of "$" and put this last on the handler as a parameter).
Hope this can help any another guy or girl who is in the same situation Good vibes for everyone! |
||||
|
|
If you're using jQuery, do the following. $( "a" ).click(function(){ return false; }); return false prevents the browser's defaults. |
|||
|
|
For IE you can also add:
|
|||
|
|
