Multiple home pages in rotation

2002-03-05 Thread Chris Newman
Hiya, Mozilla is absolutely superb. Anyone think that having a feature where you can select multiple home pages would be a good idea ? I'd like Mozilla to rotate on a new browser through a list of home pages, eg. news.com, oreillynet.com, mozilla.org, java.sun.com etc. etc. rather than just

Re: Multiple home pages in rotation

2002-03-05 Thread Tim Wunder
Chris Newman wrote: Hiya, Mozilla is absolutely superb Anyone think that having a feature where you can select multiple home pages would be a good idea ? I'd like Mozilla to rotate on a new browser through a list of home pages, eg newscom, oreillynetcom, mozillaorg, javasuncom etc etc

Re: Multiple home pages in rotation

2002-03-05 Thread Geraint Edwards
Another possible solution that would work in most browsers is to write yourself a little HTML page and save it locally In the page have some javascript that selects the 'home page' you want either randomly or based on the date/time If you wanted to be really fancy you could save the page

Re: Multiple home pages in rotation

2002-03-05 Thread Michael A. Koenecke
Neil M. [EMAIL PROTECTED] wrote in news:3C8509F5.6070809 @sympatico.ca: Chris Newman wrote: Hiya, Mozilla is absolutely superb. Anyone think that having a feature where you can select multiple home pages would be a good idea ? I'd like Mozilla to rotate on a new browser through a list

Re: Multiple home pages in rotation

2002-03-05 Thread Christian Biesinger
Michael A. Koenecke wrote: Neil M. [EMAIL PROTECTED] wrote in news:3C8509F5.6070809 @sympatico.ca: javascript:a = Math.round(Math.random() * 3);if (a == 1) { document.location=http://www.mozillanews.org;} else if (a == 2) { document.location=http://mozilla.org;} else {

Re: Multiple home pages in rotation

2002-03-05 Thread Jorey Bump
Christian Biesinger wrote: Michael A. Koenecke wrote: Neil M. [EMAIL PROTECTED] wrote in news:3C8509F5.6070809 @sympatico.ca: javascript:a = Math.round(Math.random() * 3);if (a == 1) { document.location=http://www.mozillanews.org;} else if (a == 2) {