Hello guys, I need your help. I really dont know where to ask this, but I will give it a try here. I want to place a "bookmark" this site in my sites, but where can i get such a thing? Can you please guide me in that direction? Thanks in advance.. Ed
Try this: <a href="javascript:window.external.AddFavorite('http://www.domain.com','site name')">Bookmark us</a>
Hi there, Is this what you mean? function favorieten(){ var bookmarkurl="yourdomain" var bookmarktitel="yourdomain" if (document.all) window.external.AddFavorite(bookmarkurl,bookmarktitel) } code in html <a href="javascript:favorieten()" class="top_menu">Bookmark</a>
Thanks Matt Ed Celsius, I am confused by yours, what type of code is the first? and then the second says html.
The first is a javascript function called 'favorieten' or 'favorites' in english. The second piece of code goes into the body of your html file. I'm at work now so I was a bit in a hurry, but still wanted to help you with this. The hurry means I also forgot a small but important piece of the code. I edited my first post. I hope it's more clear now