i am having the same problem as Jlew24asu it only adds to the side bar then i had to go into properties and uncheck sidebar but why is it checking that option in the first place
if u look at the code it says side bar maybe that is the problem ?
if (window.sidebar) // firefox
window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
var elem = document.createElement('a');
elem.setAttribute('href',url);
elem.setAttribute('title',title);
elem.setAttribute('rel','sidebar');
elem.click();
|