PDA

View Full Version : add to favorites listing


rsciolino
08-Jun-2003, 07:53 PM
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?

pollygordon
09-Jun-2003, 05:50 PM
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">