This example shows how to add a page to the Favorites (Bookmarks) in Internet Explorer and Firefox.
<head><scripttype="text/javascript">function AddToFavorites () {
if (window.sidebar) { // Firefox
window.sidebar.addPanel ('Dottoro help page', 'http://help.dottoro.com', '');
}
else {
if (window.external && ('AddFavorite'inwindow.external)) {
// Internet Explorer
window.external.AddFavorite ('http://help.dottoro.com', 'Dottoro help page');
}
else { // Opera, Google Chrome and Safari
alert ("Your browser doesn't support this example!");
}
}
}
</script></head><body><buttononclick="AddToFavorites ();">Add to favorites</button></body>