Monday, February 15, 2010

Open multiple urls at a time

To open multiple windows at a time use the below code in Javascript
window.open('http://www.yahoo.com');
window.open('http://www.gmail.com');

take the above lines in one js function and call the function when you want to open yahoo and google at a time in two different tabs.

No comments: