Many thanks for your input, very much appreciated. Looks like it's what i'll have to use in this case! Thanks again!
Originally Posted by loonychune
According to this article, there's not a lot you can do about safari.
http://javascript.about.com/library/blufav.htm
It apparently provides some code that lets you add to favourites in opera, but I tested it in 9.64 and no luck.
It does, however, work on firefox, and here's a simple reworking of it for Firefox:
Code:- window.onload = function() {
- var s = document.getElementById('nav');
- if (window.sidebar) {
- s.style.cursor = 'pointer';
- s.onclick = function() {window.sidebar.addPanel(document.title,self.location,'')};
- }
- }
Copy Code Look at the article anyway.
|