Add to Favorites Button (IE) using Javascript
Using javascript we can providing our visitors with a way to add our web site to their favorite places.
We can place the following JavaScript code in our sites. So that by clicking “Add to favorites” button, users can easily the site into their favorites.a button on your site that, when clicked on, will add your web site to your visitors favorites. We can place the following code where we would like the button to appear in our site.
<FORM>
<INPUT TYPE=”button” VALUE=”Add to Favorites” onClick=’window.external.AddFavorite(location.href, document.title);’>
</FORM>
