Friday, October 4, 2013

Adding bookmark of the site with the help of JavaScript

function addToBookMarks()
{
if(document.all)
{
window.external.AddFavorite(location.href,document.title);
}
else if(window.sidebar)
{
window.sidebar.addPanel (document.title,location.href,”);
}
}

No comments:

Post a Comment