JSFiddle - React, Tailwind, and code Playground
by konglie
HTML
<a href='http://google.com'>Google</a>
<a href='http://kompas.com'>Kompas</a>
<a href='http://detik.com'>Detik</a>
<a href='http://yahoo.com'>Yahoo</a>
JavaScript
$(document).ready(function(){
$('a').click(function(){
var win = $(this).data('window');
if(win){
win.focus();
} else {
var url = $(this).attr('href');
win = window.open(url);
$(this).data('window', win);
}
return false;
});
})