Forum Moderators: open

Message Too Old, No Replies

bookmarkscript

         

NetGoonie

12:36 am on May 7, 2005 (gmt 0)

10+ Year Member



Below is the script I am using for a bookmark. The only problem is in Mozilla Firefox and Netscape it adds the bookmark as a sidebar. Is there anyway to change this so that they open like a regular webpage not like a sidebar?

function addBookmark(title,url) {
if (window.sidebar) {
window.sidebar.addPanel(title, url,"");
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}
}

tedster

8:00 am on May 7, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Not as far as I can discover (and I've really looked hard!) The sidebar approach is all there is for Moz browsers right now.