detecting bokmarkedUrl in IE favorite list with javascript?

  • Thread starter Thread starter Jensen bredal
  • Start date Start date
J

Jensen bredal

Hello,
I need to offer the visitors of my siste to add it to the favorite list but
only when it is ot there.

the code below:
window.external.AddFavorite(location.href, document.title)

add the link.

How can i see if the current link is already there?

Many thinks in advance

JB
 
Hi Jensen,

The Javascript DOM does not have a method or a means of reading the list of bookmarks/favorites
in a browser, as allowing this would have posed a security threat and is a technique employed by
many spywares and trojans. It is always better, therefore, to simply add the bookmark without
checking for its existence.

HTH

Mona[Grapecity]
 
Many thanks...
JB


Hi Jensen,

The Javascript DOM does not have a method or a means of reading the list of bookmarks/favorites
in a browser, as allowing this would have posed a security threat and is a technique employed by
many spywares and trojans. It is always better, therefore, to simply add the bookmark without
checking for its existence.

HTH

Mona[Grapecity]
 
I need to offer the visitors of my siste to add it to the favorite list

Actually, you don't need to offer that, since that's built into the browser
already. ;o)

-Darrel
 
Back
Top