JSFiddle - React, Tailwind, and code Playground
HTML
<img src="http://file4land.org/hb/posts/2009-10/1256935602_1.jpg" class="no-drag" />
<img src="http://voicerock.net/plug/avatar/350-43681.png" />
CSS
.no-drag {
border: 2px dashed red;
}
JavaScript
$('.no-drag').each(function (){
$(this).bind('dragstart', function(e) {
if (window.event) event.preventDefault();
e.cancelBubble = true; return false;
});
});