If you want to make browser compatible "Add to Favorites" then check the below mentioned code
function addfav(){
if(window.external)
{
window.external.AddFavorite(
"http://www.thejackol.com", "the jackol's den");
return false;
}
return true;
}And you call it like this:
Add to favourites
function addfav(){
if(window.external)
{
window.external.AddFavorite(
"http://www.thejackol.com", "the jackol's den");
return false;
}
return true;
}And you call it like this:
Add to favourites
Comment