Go Back   Velocity Reviews > Newsgroups > HTML
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

HTML - Making MY site visitors browsers Home Page

 
Thread Tools Search this Thread
Old 11-24-2003, 02:37 AM   #1
Default Making MY site visitors browsers Home Page


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
  Reply With Quote
Old 11-24-2003, 03:34 AM   #2
Adrienne
 
Posts: n/a
Default Re: Making MY site visitors browsers Home Page
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
  Reply With Quote
Old 11-24-2003, 05:27 AM   #3
news frontiernet.net
 
Posts: n/a
Default Re: Making MY site visitors browsers Home Page
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
  Reply With Quote
Old 11-24-2003, 06:41 AM   #4
Richard
 
Posts: n/a
Default Re: Making MY site visitors browsers Home Page
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
  Reply With Quote
Old 11-24-2003, 10:54 AM   #5
Whitecrest
 
Posts: n/a
Default Re: Making MY site visitors browsers Home Page
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
  Reply With Quote
Old 11-24-2003, 10:58 AM   #6
Whitecrest
 
Posts: n/a
Default Re: Making MY site visitors browsers Home Page
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
  Reply With Quote
Old 11-24-2003, 11:11 AM   #7
Sid Ismail
 
Posts: n/a
Default Re: Making MY site visitors browsers Home Page
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
  Reply With Quote
Old 11-24-2003, 11:27 AM   #8
rf
 
Posts: n/a
Default Re: Making MY site visitors browsers Home Page

"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
  Reply With Quote
Old 11-24-2003, 12:00 PM   #9
Whitecrest
 
Posts: n/a
Default Re: Making MY site visitors browsers Home Page
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
  Reply With Quote
Old 11-24-2003, 12:57 PM   #10
Toby A Inkster
 
Posts: n/a
Default Re: Making MY site visitors browsers Home Page
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
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

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




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46