JSFiddle - React, Tailwind, and code Playground

by zerrax

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<a href="http://www.google.com" id="no-link">Hyperlink</a>

JavaScript

$(document).ready(function () {
          setTimeout(function () {
               
                $('a[href]').each(function () {
                    var href = this.href;
    
                    $(this).removeAttr('href').css('cursor', 'pointer').click(function () {
                   
                    });
                });
    
          }, 500);
    });