JSFiddle - React, Tailwind, and code Playground
by Debiprasad
HTML
<button>Open</button>
JavaScript
$('button').click(function() {
window.open('http://stackoverflow.com/', '_blank');
window.open('http://google.com/', '_blank');
});
by Debiprasad
<button>Open</button>
$('button').click(function() {
window.open('http://stackoverflow.com/', '_blank');
window.open('http://google.com/', '_blank');
});