JSFiddle - React, Tailwind, and code Playground

by satantx

HTML

<a href="http://www.themeskingdom.com/" class="click">Push me</a>

JavaScript

$('.click').click(function(){
    var href = $(this).attr('href');
    location='+href+';
    return false;
});