JSFiddle - React, Tailwind, and code Playground
HTML
<a class="g" href="http://www.google.com/">Link</a>
JavaScript
$(document).ready(function() {
$("a.g").click(function(event){
event.preventDefault();
});
});
<a class="g" href="http://www.google.com/">Link</a>
$(document).ready(function() {
$("a.g").click(function(event){
event.preventDefault();
});
});