![]() |
|
|
|||||||
![]() |
HTML - Making MY site visitors browsers Home Page |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
I see facilities on internet to add a site to the visitors browsers
Favorites. I think I have seen such a facility to let a visitor click on something that will make My Web site the home page for HIS broswer. Is this possible? How would I set that up? Can anyone point me to an example? news frontiernet.net |
|
|
|
|
#2 |
|
Posts: n/a
|
Gazing into my crystal ball I observed "news frontiernet.net"
<> writing in news:r9ewb.1884$: > I see facilities on internet to add a site to the visitors browsers > Favorites. > > I think I have seen such a facility to let a visitor click on something > that will make My Web site the home page for HIS broswer. > > Is this possible? > > How would I set that up? Can anyone point me to an example? > > > Vistors know how to bookmark a site. No need for anything else. -- Adrienne Boswell Please respond to the group so others can share http://www.arbpen.com Adrienne |
|
|
|
#3 |
|
Posts: n/a
|
It ISNT bookmarking that I am interesrted in!
It is providing a facility on my web site to allow visitors to quickly establish MY WEB SITE as the web site that their browser automatically opens up when the access it or ask for HOME. I expect that there are some visitos who would use this Facility. I remember seeing it somewhere on Internet. Does anyone know where there is an example of this, or could lead me to a resource for this? "Adrienne" <> wrote in message news:Xns943CC732EAADDarbpenyahoocom@207.115.63.158 ... > Gazing into my crystal ball I observed "news frontiernet.net" > <> writing in > news:r9ewb.1884$: > > > I see facilities on internet to add a site to the visitors browsers > > Favorites. > > > > I think I have seen such a facility to let a visitor click on something > > that will make My Web site the home page for HIS broswer. > > > > Is this possible? > > > > How would I set that up? Can anyone point me to an example? > > > > > > > > Vistors know how to bookmark a site. No need for anything else. > > -- > Adrienne Boswell > Please respond to the group so others can share > http://www.arbpen.com news frontiernet.net |
|
|
|
#4 |
|
Posts: n/a
|
news! wrote:
> It ISNT bookmarking that I am interesrted in! > It is providing a facility on my web site to allow visitors to quickly > establish MY WEB SITE as the web site that their browser automatically > opens up when the access it or ask for HOME. > I expect that there are some visitos who would use this Facility. > I remember seeing it somewhere on Internet. Does anyone know where there > is an example of this, or could lead me to a resource for this? www.google.com check the source code for an example. Richard |
|
|
|
#5 |
|
Posts: n/a
|
In article <Xns943CC732EAADDarbpenyahoocom@207.115.63.158>, arbpen2003
@sbcglobal.net says... > > I see facilities on internet to add a site to the visitors browsers > > Favorites. > > I think I have seen such a facility to let a visitor click on something > > that will make My Web site the home page for HIS broswer. > > Is this possible? > > How would I set that up? Can anyone point me to an example? > Vistors know how to bookmark a site. No need for anything else. How the hell do they know how to book marks a site when they can even figure out how to close a window? Here is some code that will work on 80% of your visitors: <!-- ONE STEP TO INSTALL BOOKMARK US: 1. Copy the coding into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the BODY of your HTML document --> <SCRIPT LANGUAGE="JavaScript"> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://javascript.internet.com --> <!-- Begin if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4) && (navigator.appVersion.indexOf("AOL") == -1)) { var url="http://www.javascriptsource.com"; var title="The JavaScript Source"; document.write('<A HREF="javascript:window.ext'); document.write('ernal.AddFavorite(url,title);" '); document.write('onMouseOver=" window.status='); document.write("'Add our site to your favorites!'; return true "); document.write('"onMouseOut=" window.status='); document.write("' '; return true "); document.write('">Add our site to your favorites!</a>'); } else { var msg = "Don't forget to bookmark us!"; if(navigator.appName == "Netscape") msg += " (CTRL-D)"; document.write(msg); } // End --> </script> <p><center> <font face="arial, helvetica" size="-2">Free JavaScripts provided<br> by <a href="http://javascriptsource.com">The JavaScript Source</a> </font> </center><p> -- Whitecrest Entertainment www.whitecrestent.com Whitecrest |
|
|
|
#6 |
|
Posts: n/a
|
In article <pFgwb.1907$>,
says... > It ISNT bookmarking that I am interesrted in! > > It is providing a facility on my web site to allow visitors to quickly > establish MY WEB SITE as the web site that their browser automatically opens > up when the access it or ask for HOME. Sorry, here is the right code (mind you this does not work in all browsers) <!-- ONE STEP TO INSTALL SET HOME PAGE: 1. Copy the coding into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the BODY of your HTML document --> <BODY> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://javascript.internet.com --> <!-- Original: wsabstract.com --> <!--[if IE]> <a HREF onClick="this.style.behavior='url (#default#homepage)';this.setHomePage ('http://www.javascriptsource.com');"><img src="house.gif"> Click here to make this your default homepage!</a> <![endif]--> <p><center> <font face="arial, helvetica" size="-2">Free JavaScripts provided<br> by <a href="http://javascriptsource.com">The JavaScript Source</a> </font> </center><p> <!-- Script Size: 0.60 KB -->-- Hope that helped. -- Whitecrest Entertainment www.whitecrestent.com Whitecrest |
|
|
|
#7 |
|
Posts: n/a
|
On Mon, 24 Nov 2003 05:54:44 -0500, Whitecrest <>
wrote: : Here is some code that will work on 80% of your visitors: : : <!-- ONE STEP TO INSTALL BOOKMARK US: Anyone who needs a script to put their URL in others' favorites is suffering from a inferior complex. If it's good, the user will bookmark it. Sid Sid Ismail |
|
|
|
#8 |
|
Posts: n/a
|
"Whitecrest" <> wrote in message news:.. . > In article <Xns943CC732EAADDarbpenyahoocom@207.115.63.158>, arbpen2003 > @sbcglobal.net says... > > > I see facilities on internet to add a site to the visitors browsers > > > Favorites. > > > I think I have seen such a facility to let a visitor click on something > > > that will make My Web site the home page for HIS broswer. > > > Is this possible? > > > How would I set that up? Can anyone point me to an example? > > Vistors know how to bookmark a site. No need for anything else. > > How the hell do they know how to book marks a site when they can even > figure out how to close a window? > > Here is some code that will work on 80% of your visitors: > <snip crap> Nothing more to say. Cheers Richard. rf |
|
|
|
#9 |
|
Posts: n/a
|
In article <yWlwb.25045$>,
says... > > Here is some code that will work on 80% of your visitors: > <snip crap> > Nothing more to say. Your right it is crap, and I knew the OP would be told that many many times. So I was only giving the OP what they asked for. They can take it, and combined with the other posts and make a decision. -- Whitecrest Entertainment www.whitecrestent.com Whitecrest |
|
|
|
#10 |
|
Posts: n/a
|
Whitecrest wrote:
> So I was only giving the OP what they asked for. You gave some Javascript code to bookmark a page. This isn't want the OP asked for. Read the original post again if you thought it was. -- Toby A Inkster BSc (Hons) ARCS Contact Me - http://www.goddamn.co.uk/tobyink/?page=132 Toby A Inkster |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Home Theater Profile Exchange - April 15 2005 | David Troxell - Encourager Software | DVD Video | 0 | 04-16-2005 06:18 PM |
| Hijacked Home Page | sbmike | A+ Certification | 13 | 12-29-2004 06:18 PM |
| IE Home Page Always Turning to BLANK | Dilash | A+ Certification | 4 | 10-27-2004 09:12 PM |
| DeepdiscountDVD problem loading home page today? | JAM | DVD Video | 2 | 05-21-2004 11:22 PM |
| browser home page problem | -D- | A+ Certification | 4 | 02-18-2004 10:49 PM |