Avoid default drag and drop behaviour in FF3
document.addEventListener("draggesture", function(event){event.stopPropagation()},true);
or if you are using jquery: $(document).bind("draggesture",function(){return false})
I haven't seen any mention of this on the net so far so I thought is was worth mentioning it.
(For IE use $(document).bind("drag",function(){return false}))
Labels: avoid, cancel, default, drag, drop, ff3, Firefox 3, javascript