Jump to content
  • 0

Добавление в избраное


stars
 Share

Question

Столкнулся с проблемой, что не знаю как сделать крос браузерное добавление в избранное. Есть такой скрипт

<script>
function addBookmark(url, title)
{
if (!url) url = location.href;
if (!title) title = Правила съема;

//Gecko
if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function")) window.sidebar.addPanel (title, url, "");
//IE4+
else if (typeof window.external == "object") window.external.AddFavorite(url, title);
//Opera7+
else if (window.opera && document.createElement)
{
var a = document.createElement('A');
if (!a) return false; //IF Opera 6
a.setAttribute('rel','sidebar');
a.setAttribute('href',url);
a.setAttribute('title',title);
a.click();
}
else return false;

return true;
}
</script>

далее в странице вставляем

<a href="java script: void(addBookmark() || alert('Ваш браузер не поддерживает автоматическое добавление закладок.'))">добавить в избранное</a>

И вроде бы все супер ан нет, последняя опера сопротивляется этому скрипту... кто может помочь разобраться или подсказать пути решения... Желательно примеры конечно

PS перед созданием темы потратил несколько минут над вопросом "в каком разделе создать тему", потом забил и создал тут если не прав просьба модераторов поправить...

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy