JSFiddle - React, Tailwind, and code Playground

by James Allardice

HTML

<a class="g" href="http://www.google.com/">Link</a>

JavaScript

$(document).ready(function() {

      $("a.g").click(function(event){
         event.preventDefault();
      });

   });