corner image corner image
Thread: Bookmark script
View Single Post
corner image corner image
  #9 (permalink)  
Old 20-05-2008, 11:19
Poppy Design Poppy Design is offline
A1 Business Forum Regular
 
Join Date: May 2008
Location: North East Scotland
Posts: 54
Thanks: 1
Thanked 5 Times in 5 Posts
[quote=dave_n;46926]function bookmarksite(title,url){
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();
}
else if(document.all)// ie
window.external.AddFavorite(url, title);
}

[quote]

Does that code go in the head brackets or the body?

Doet it need a <javascipt> prefix?

I tried adding to the body but it did not work.

Thanks
Joanne
__________________
Joanne MacRae
www.poppy-design.co.uk - Bespoke Web, Ecommerce & Graphic Design
www.funkycanvas.co.uk - Contemporary Canvas Art
Reply With Quote
corner image corner image