I have bound events to different elements, and when I drag them in all browsers, except Firefox, it works as expected. In firefox, however, it doesn\'t work at all. The only eve
You can use this as a reference for this question solution regarding the redirects that occur on Firefox.
You need to prevent the default action in drop method to fix this issue.
function drop(e) {
if(e.preventDefault) { e.preventDefault(); }
if(e.stopPropagation) { e.stopPropagation(); }
//your code here
return false;
}
I got this solution from this link.