Thursday, April 9, 2009

Bookmark in Firefox and Internet Explorer

Add this function into your head tag and call it. This works for both Firefox and Internet Explorer.

function add_to_fav(title, url){
if(document.all)
{
window.external.AddFavorite(url, title);
}
else if(window.sidebar)
{
window.sidebar.addPanel(title, url, "")
}
}

and call like this; add_to_fav('My blog', 'http://raza-ali.blogspot.com/')

No comments: