Search this site!

Return to the CSB Support home page
Bookmark 1   |   Bookmark 2   |   Bookmark 3
Bookmark 2
Description:
Note: This still only works with IE4+ browsers, but Netscape users will be reminded to press CTRL-D to add this page
How to use:
1. Copy and paste the code provided in the file 'bookmark2.txt' into a BYOWG, which should be placed where you want the "link" text to apppear.

2. Edit the two lines of code to identify your URL and a description for your bookmark. (See highlighted lines in source code listing at end of page)

3. Publish and enjoy!
Example:
Download the code
right click on link, then click on 'Save target (or frame) as'
Other information:
Apparently Netscape has no comparable Javascript command to update the list of Favorite sites.

Source code:


<ul>
<li>
<script language=JavaScript>
<!--
if (navigator.appName=="Netscape") {
 document.write (
   'To bookmark this site, click '
  +'<b>Bookmarks&nbsp;| Add&nbsp;bookmark</b> '
  +'or press <b>Ctrl+D</b>.'
 )
}
else if (parseInt(navigator.appVersion)>3) {
 document.write (''
  +'<a onMouseOver="self.status=\'Bookmark this site\'" '
  +' onMouseOut="self.status=\'\'" '
  +' href="javascript:window.external.AddFavorite'
  +'(\'http://www.kwsupport.com/trellix/\','
  +'\'Unofficial Trellix support page\')">'
  +'Click here to bookmark this site</a>.'
 )
}

//-->
</script>
</ul>