Announcement

Collapse
No announcement yet.

add to favorites listing

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    add to favorites listing

    I would like to put on my pages an icon that allows an individual to "Add page to your favorites" on their browser. Any ideas on how this is done?

    #2
    Hello,

    Use Javascript to add a bookmark, here is the code - replace the url and company details as appropriate.

    Hope this helps...


    <script language="JavaScript">
    <!-- Begin
    function addbookmark()
    {
    bookmarkurl="http://www.yoursite.co.uk"
    bookmarktitle="Your sites title to be displayed in the favourites list."
    if (document.all)
    window.external.AddFavorite(bookmarkurl,bookmarktitle)
    }
    // End -->
    </script>
    <a href="javascript:addbookmark()"><font color="#FF3300">Add "Your Site" to list of favourites
    </font></a></font></p>
    <p align="center">&nbsp;</p>
    <p>
    <script language="JavaScript">

    Comment

    Working...
    X