Hi
i want to open a window with multiple tabs having different url,using javascript
now i use code like this
Code:
function openwindow(url)//open a link in a new window
{
window.open(url,'_blank', 'toolbar=1,location=1,menubar=1');
}
i call this openwindow function in for loop having array variable containing list of url's and pass the url to the openwindow function .
it open all the links in new window, but i want to open in same window with multiple tabs
guide me to solve this problem.
Thanks
A.Thangasornam