JSFiddle - React, Tailwind, and code Playground
by blineberry
HTML
<a href="http://www.google.com/" target="_blank">Internet v4 Link Intents</a>
CSS
a {
display: inline-block;
padding: 3em;
}
JavaScript
$('a').mouseenter(function() {
window.location.href = $(this).attr("href");
});