JSFiddle - React, Tailwind, and code Playground
by inser
HTML
<a href='#'>Click me</a>
JavaScript
$('a').click(function(e) {
e.preventDefault();
setTimeout(function() {
open('http://www.theoffermachine.com', '_blank');
}, 1000);
});