(function($) { $(function() { $('header.header').append('В закладки'); if ( $('#catalog').length ) { $('a.catalog__link').attr('href', $('#catalog option:first').data('url')); $('#catalog').change(function() { $('a.catalog__link').attr('href', $('#catalog option:selected').data('url')); }); } $('div.header__nav-toggle').click(function() { var toggle = $(this); var nav = $('nav.header__nav'); if (nav.is(':hidden')) { nav.add(toggle).addClass('active'); } else { nav.add(toggle).removeClass('active'); } }); $(document).click(function() { $('nav.header__nav, div.header__nav-toggle').removeClass('active'); }); $('div.header__nav-toggle, nav.header__nav').click(function(e) { e.stopPropagation(); }); }); })(jQuery); function fav(a) { title = document.title; url = document.location; try { // Internet Explorer window.external.AddFavorite(url, title); } catch (e) { try { // Mozilla window.sidebar.addPanel(title, url, ""); } catch (e) { // Opera Presto и Firefox 23+ if (typeof(opera)=="object" || window.sidebar) { a.rel = "sidebar"; a.title = title; a.url = url; a.href = url; return true; } else { // Unknown alert('Нажмите Ctrl-D, чтобы добавить страницу в закладки'); } } } return false; }