Preventing click event with Scriptaculous drag and drop - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T21:17:48Zhttp://stackoverflow.com/feeds/question/274843http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/274843/preventing-click-event-with-scriptaculous-drag-and-drop3Preventing click event with Scriptaculous drag and dropdigitalsanctum2008-11-08T15:47:28Z2008-12-12T21:14:18Z
<p>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?</p>
http://stackoverflow.com/questions/274843/preventing-click-event-with-scriptaculous-drag-and-drop/274875#2748750Answer by VonC for Preventing click event with Scriptaculous drag and dropVonC2008-11-08T16:10:35Z2008-11-08T16:10:35Z<p>Something like the following might do the trick (and prevent the click event to be fired up)</p>
<pre><code>new Draggable('tag',
{
revert:function()
{
$('tag').onclick = function(){return false;};
setTimeout('$(\'tag\').onclick = function(){return true;}','500');
return true;
}
}
);
</code></pre>
http://stackoverflow.com/questions/274843/preventing-click-event-with-scriptaculous-drag-and-drop/276080#2760801Answer by digitalsanctum for Preventing click event with Scriptaculous drag and dropdigitalsanctum2008-11-09T16:34:30Z2008-11-09T16:34:30Z<p>I solved this by using something like the following:</p>
<pre><code>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
});
</code></pre>
http://stackoverflow.com/questions/274843/preventing-click-event-with-scriptaculous-drag-and-drop/364164#3641640Answer by Tony for Preventing click event with Scriptaculous drag and dropTony2008-12-12T21:14:18Z2008-12-12T21:14:18Z<pre><code>var click_func;
function onDragStart(drgObj,mouseEvent){
click_func = mouseEvent.target.onclick;
mouseEvent.target.onclick = function(e){
mouseEvent.target.onclick = click_func;
return false;
}
}
</code></pre>