Forum Moderators: mack

Message Too Old, No Replies

Bookmark this page?

         

goldengob

4:59 pm on Jan 8, 2005 (gmt 0)

10+ Year Member



Hi guys

Here I am back again to the ever faithfull Webmasterworld for advice.

Can anyone please explain how you put a "Bookmark this page" link on your site?

...Or if someone could just give me the code for it that would be awesome.

Forever grateful!

Thanks

kodaks

5:21 pm on Jan 8, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Here is the code:
<script language="JavaScript1.2">
var text = 'Bookmark this site';
var title ='Favorite Title';
var url = 'http://url-to-bookmark.com';
function bookmarkit(){
window.external.addFavorite(url,title)
}
if (document.all)
document.write('<a href="#" onClick="bookmarkit()">' + text + '</a>')
else
document.write(text + ' (Ctrl + D)');
</script>

goldengob

7:20 pm on Jan 8, 2005 (gmt 0)

10+ Year Member



Thanks for that Kodaks!

Much appreciated.