Buka 2 tautan dengan satu klik HTML JQuery

$('a.yourlink').click(function(e) {
    e.preventDefault();
    window.open('http://yoururl1.com');
    window.open('http://yoururl2.com');
});
Thoughtless Trout