View Single Post
09-20-2005, 07:45 PM
#3
Aphex is offline Aphex
Aphex's Avatar
Status: Member
Join date: Aug 2004
Location: United States
Expertise:
Software:
 
Posts: 244
iTrader: 0 / 0%
 

Aphex is on a distinguished road

Send a message via AIM to Aphex Send a message via MSN to Aphex

  Old

Try this:

Add this script between <head>'s:
Code:
<script type="text/javascript">
function addBookmark(title,url)
 { 
    if (window.sidebar) 
    { 
      window.sidebar.addPanel(title, url,""); } 

    else if( document.all ) 
    {
      window.external.AddFavorite( url, title); }

    else if( window.opera && window.print ) 
    { 
      return true; }
}
</script>
To use it, add this (change the site name and URL to your own obviously):

Code:
<a href="#" onmousedown="addBookmark('Site Name','URL/')">Bookmark this page</a>