JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <a href="http://google.com">Google</a>
</div>

JavaScript

$(document).bind("dragstart", function(event) {
    if (event.target.tagName.toLowerCase() === "a") {
        event.preventDefault();
    }
});