Preventing click event with Scriptaculous drag and drop - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T21:17:48Z http://stackoverflow.com/feeds/question/274843 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/274843/preventing-click-event-with-scriptaculous-drag-and-drop 3 Preventing click event with Scriptaculous drag and drop digitalsanctum 2008-11-08T15:47:28Z 2008-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#274875 0 Answer by VonC for Preventing click event with Scriptaculous drag and drop VonC 2008-11-08T16:10:35Z 2008-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#276080 1 Answer by digitalsanctum for Preventing click event with Scriptaculous drag and drop digitalsanctum 2008-11-09T16:34:30Z 2008-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#364164 0 Answer by Tony for Preventing click event with Scriptaculous drag and drop Tony 2008-12-12T21:14:18Z 2008-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>