Cross Browser Add to Favorites Javascript
Bookmark on del.icio.us
Tweet
Tweet
Creating a link for bookmarking web page is easy. Lets read this tutorial which will enable you to create a link useful for users to bookmark your website.
Head Section Code
<script type="text/javascript"> function bookmarksite(title, url){ if (document.all) window.external.AddFavorite(url, title); else if (window.sidebar) window.sidebar.addPanel(title, url, "") } </script>
Body Section Code
<a href="javascript:bookmarksite('my blog', 'http://www.phpasks.com')">Bookmark this!</a>
No comments yet.