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?
If Javascript is an optional requirement, you can try with CSS
.wrapper img { pointer-events: none; }