Hi EveryBody...
Today I want to discuss with you how add "Add Favourites" in IE browser or "Add BookMark" in firefox acoording to the browser.This is very Simple just go through with the following code.
[html]
[head id="Head1" runat="server"]
[title]How to Cerate BookMark/Add Favourites in FireFox/IE[/title]
[script language="JavaScript" type="text/javascript"]
function BodyOnload()
{
var myLink=document.getElementById("myLink");
if (document.all)
{
myLink.innerHTML="Add to Favorites";
}
else if (window.sidebar)
{
myLink.innerHTML="Add Bookmark";
}
}
function bookmarksite()
{
if (document.all)
{
window.external.AddFavorite(location.href, document.title);
}
else if (window.sidebar)
{
window.sidebar.addPanel(document.title, location.href, "");
}
}
[/script]
[/head]
[body onload="BodyOnload();"]
[a href="javascript:bookmarksite();" style="color: Blue;" id="myLink"]InnerHTML[/a]
[/body]
[/html]
Enjoy coding...
Sanjeev Chauhan
No comments:
Post a Comment