Firefox has this annoying behavior that it let\'s the user drag and drop any image element by default. How can I cleanly disable this default behavior with jQuery?
Solution without jQuery:
document.addEventListener('dragstart', function (e) { e.preventDefault(); });