JSFiddle - React, Tailwind, and code Playground

by lollero

HTML

<a href="http://www.google.com">sdsfas</a> <br />
<a href="http://www.google.com">sdsfas</a> <br />
<a href="http://www.google.com">sdsfas</a>

JavaScript

$('a').each(function() {

    var link = $(this),
        linkD = link.data();

    link.on('click',function(event){
        
        !linkD.clicked && event.preventDefault();
    
        link.data({ "clicked": true });    
        
    });

});