vote up 3 vote down star
1

I have some elements on a page which are draggable. These same elements have a click event which navigates to another page. I'm trying to determine the best way of preventing the click event from firing if the user is dragging but still allow the click event if not dragging. Anyone have any ideas of the best way to accomplish this?

flag

57% accept rate

3 Answers

vote up 0 vote down
var click_func;
function onDragStart(drgObj,mouseEvent){
    click_func = mouseEvent.target.onclick;

    mouseEvent.target.onclick = function(e){
    	mouseEvent.target.onclick = click_func;
    	return false;
    }
}
link|flag
vote up 1 vote down check

I solved this by using something like the following:

new Draggable('id', {
    onStart: function() {
        dPhoto = $('id');
        Event.stopObserving('id', 'click');
    },
    onEnd : function() {
        setTimeout("Event.observe('id', 'click', function() { location.href = 'url'; });", 500);
    },
    revert: true
});
link|flag
Could you actually save the click event to reattach again afterwards? – mercutio Nov 11 '08 at 15:12
vote up 0 vote down

Something like the following might do the trick (and prevent the click event to be fired up)

new Draggable('tag',  
    {
        revert:function()
        {
            $('tag').onclick = function(){return false;};
            setTimeout('$(\'tag\').onclick = function(){return true;}','500');  
            return true;
        }
    }
);
link|flag
Thanks, but this didn't quite work. It prevents the click event from happening even after the timeout. Seems like there should be a cleaner solution. – digitalsanctum Nov 8 '08 at 17:38
I agree. I was worth a shot. – VonC Nov 8 '08 at 17:57

Your Answer

Get an OpenID
or

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