How can we oepn several websites at once with one mouse click regardless of browser?

  • Thread starter Thread starter fitwell
  • Start date Start date
F

fitwell

I know how to launch programs and files, but what does one do if one
needs to go to several different websites all at once, without having
to click the bookmarks for each, etc., manually? Tx. (p.s., that
would work for any browser.)
 
in avant browser there is a "groups" menu where you open several sites
at once in several tabs by clicking one group name.

in firefox you have "open all links in folder" in each folder.

that's pretty close to one click.
 
fitwell said:
I know how to launch programs and files, but what does one do if one
needs to go to several different websites all at once, without having
to click the bookmarks for each, etc., manually? Tx. (p.s., that
would work for any browser.)

I recommend Netopener at: http://www.code.gr/netopener/ It can open up to
20 sites at once. If you need more you can run multiple copies of Netopener
(use a separate folder for each).

===

Frank Bohan
¶ Even if you win the rat race, you're still a rat.
 
I know how to launch programs and files, but what does one do if
one needs to go to several different websites all at once, without
having to click the bookmarks for each, etc., manually? Tx.
(p.s., that would work for any browser.)
I don't know about a separate application to do it, but several
browsers (including the ie wrappers) have group functions which will
do it.
 
fitwell said:
I know how to launch programs and files, but what does one do if one
needs to go to several different websites all at once, without having
to click the bookmarks for each, etc., manually? Tx. (p.s., that
would work for any browser.)

I guess you could create a bookmark that contains
a single line of javascript to open multiple pages instead of a url .
Something a bit like this (works as an IE favourite)



javascript:(function(){var urls = new Array('www.google.com','www.microsoft.com','www.gmail.com'); for(n in
urls){window.open('http://'+urls[n],'url' + n) } })();


(should be a single line, but is bound to break)
 
I know how to launch programs and files, but what does one do if one
needs to go to several different websites all at once, without having
to click the bookmarks for each, etc., manually? Tx. (p.s., that
would work for any browser.)

Thank you so much, everyone, for all the great help! I don't know
which option to use <g>.

I'll probably try a bat file for now (I didn't think of that type of
solution for internet use! <g>).
 
Back
Top