JSFiddle - React, Tailwind, and code Playground
by robertfalken
HTML
<a href="http://google.com" target="_blank">Click me!</a>
JavaScript
$(window).keyup(function(e){
$('a').trigger('click');
});
$('a').on('click', function(){
location.href = $(this).attr('href');
});