JSFiddle - React, Tailwind, and code Playground
HTML
<a id='go-to-many-places' href='javascript:void(0);'>Click me to get to many URLs</a>
JavaScript
$(function() {
$('#go-to-many-places').click(function(e) {
e.preventDefault();
window.open('http://www.google.com');
window.open('http://www.yahoo.com');
window.open('http://www.msn.com');
});
});