Bookmark Us

Any problem with javascript can be discussed here.
Locked
coco
Posts: 50
Joined: Thu Dec 23, 2004 12:01 pm
Contact:

Bookmark Us

Post by coco »

Allow your visitors to **** one text link to quickly and easily add your site to their favourites (Netscape users won't get any errors but instead get a message reminding them to bookmark).

<!-- ONE STEP TO INSTALL BOOKMARK US:

1. Copy the coding into the BODY of your HTML **** -->



<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {

var url="http://www.8sky.info";
var title="8sky.info";

****.write('<A HREF="javascript:window.ext');
****.write('ernal.AddFavorite(url,title);" ');
****.write('onMouseOver=" window.status=');
****.write("'Add our site to your favorites!'; return true ");
****.write('"onMouseOut=" window.status=');
****.write("' '; return true ");
****.write('">Add our site to your favorites!</a>');
}
else {
var msg = "Don't forget to bookmark us!";
if(navigator.appName == "Netscape") msg += " (CTRL-D)";
****.write(msg);
}

// End -->
</script>


Holograph
Posts: 14
Joined: Wed Oct 11, 2006 7:52 am

Post by Holograph »

Cool
Locked