Bookmark code for firefox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Pete-KT
    Workin With The Devil
    • Oct 2004
    • 51532

    #1

    Bookmark code for firefox

    Ive seen its only once before and never again I need the code so when people click bookmark it works with IE, netscape, and Firefox not just IE.

    thanks in advance
  • nmcog
    Confirmed User
    • Sep 2004
    • 825

    #2
    Code:
    <script language="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>
    Code:
    <a href="javascript:addBookmark();" target="_self" onmousedown="addBookmark('Good site','http://www.domain.com/')"></a>
    Last edited by nmcog; 04-18-2005, 10:59 AM. Reason: Fixed.

    Comment

    • beta-tester
      Rock 'n Roll Baby!
      • Sep 2004
      • 22562

      #3
      Great !! Thanks a lot for that man!!!

      Sig for sale. Affordable prices. Contact me and get a great deal ;)

      My contact:
      ICQ: 944-320-46
      e-mail: manca {AT} HotFreeSex4All.com

      Comment

      Working...