|
View previous topic
::
View next topic
|
| Author |
Message |
Idahoone
Joined: 15 May 2006
Posts: 9
|
Posted: Mon Nov 20, 2006 9:00 pm
Post subject: How does one let visitors make their website their homepage
|
|
|
How does one let visitors make their website their homepage ?
(is HTML based site) _________________ Idaho one |
|
| Back to top |
|
 |
Chris Demetrios
Joined: 09 Apr 2005
Posts: 96
|
Posted: Tue Nov 21, 2006 3:35 am
Post subject:
|
|
|
I am tempted to give you the same answer as you replied to the previous two posts:
| Idahoone wrote: | www.coffeecup.com
programs. good prices & free trials. |
but I won't. You need to embed javascript in your html to do this. Do a search in Google for "javascript make homepage".
I have a piece of software that I bought the resell rights to some time ago that can do this too. PM me if you don't have success.
Regards,
Chris |
|
| Back to top |
|
 |
mbongwe
Joined: 06 Jul 2006
Posts: 60
|
Posted: Tue Nov 21, 2006 2:22 pm
Post subject:
|
|
|
| Code: | Here is a function I am using:
var urlAddress = "http://yoursite.com";
var pageName = "Your website";
function addToFavorites()
{
if (window.external)
{
window.external.AddFavorite(urlAddress,pageName)
} else
{
alert("Sorry! Your browser doesn't support this function. Click OK then press Ctrl+D.");
}
}
|
And then call it from a text link or button:
| Code: | | <a href="javascript:addToFavorites()";> Bookmark this site</a> | [/code] _________________ Ultralight Airplane | Risk Investing | Calendar Script | smart personal finance |
drop ship secrets |
|
| Back to top |
|
 |
Idahoone
Joined: 15 May 2006
Posts: 9
|
Posted: Tue Nov 21, 2006 4:41 pm
Post subject:
|
|
|
Thanks mbongwe;
that's the ones we were looking for. _________________ Idaho one |
|
| Back to top |
|
 |
| View previous topic :: View next topic |
|