Как и куда добавить в JS, display='none' что бы при нажатии на ссылку с id="chattrigger" - исчезала, появлялась только при обновлении страницы, либо при переходе на другую...
<a href="#" id="chattrigger">Чат Вконтакте</a>
(function($) {
'use strict';
$('#chattrigger').on( "click", function() {
if($('#chattrigger').hasClass('is-open')===true){ return false; }
$('#chattrigger').toggleClass('is-open');
$.ajax({
url: 'https://vk.com/js/api/openapi.js?137',
dataType: 'script',
cache: true
}).done(function() {
$('body').append('<div id="vk_community_messages"></div>');
VK.Widgets.CommunityMessages("vk_community_messages", 1, {
expanded: "1",
//expandTimeout: "360000",
disableExpandChatSound: "1",
//disableNewMessagesSound: "1",
//widgetPosition: "left",
tooltipButtonText: "Есть вопрос?",
//disableButtonTooltip: "1"
});
});
return false;
});
})(jQuery);