Add Page To Favorites
This script will help you to add a given page to favorites.
It's quite small, simple and easy to understand.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script type="text/javascript">
//
// ADD THIS PAGE TO FAVORITES
//
function addPageToFav(/*STRING*/ title, /*STRING*/ url )
{
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "");
}
</script>
</head>
<body>
<span id="AddToFav_Span"
onclick="addPageToFav('EasyWebDevelopment','http://jasp-costin.blogspot.com')">Add
to favorites</span>
</body>
</html>
No comments:
Post a Comment