http://jsfiddle.net/Hiker9/ugwdeaoj/3/
Iterating over an array of URLs, opening each using window.open().
siteList = [
'http://getfirefox.com/',
'http://google.com/chrome',
'http://getie.com/'];
$('.launch').click(function () {
$.each(siteList, function (i) {
window.open(siteList[i]);
});
});
Works in Firefox (32) and IE (11), but Chrome (37) only opens the first URL.