Jimmy420
01-24-2008, 01:02 PM
Hi, i'm new to java and need some help. I have the script below and i am trying to make it so when you click on a button it will add the website to your favorites. Could someone give me a hand with this?
function CreateBookmarkLink() {
title = document.title;
url = window.location.href;
if (window.sidebar) { // Mozilla Firefox Bookmark
window.sidebar.addPanel(title, url,"http://www.desperadosofgaming.com/");
} else if( window.external ) { // IE Favorite
window.external.AddFavorite( url, title); }
else if(window.opera && window.print) { // Opera Hotlist
return true; }
}
Thanks,
Jimmy
function CreateBookmarkLink() {
title = document.title;
url = window.location.href;
if (window.sidebar) { // Mozilla Firefox Bookmark
window.sidebar.addPanel(title, url,"http://www.desperadosofgaming.com/");
} else if( window.external ) { // IE Favorite
window.external.AddFavorite( url, title); }
else if(window.opera && window.print) { // Opera Hotlist
return true; }
}
Thanks,
Jimmy