Показать сообщение отдельно
  #6 (permalink)  
Старый 02.08.2016, 11:49
Новичок на форуме
Отправить личное сообщение для Nikita21 Посмотреть профиль Найти все сообщения от Nikita21
 
Регистрация: 28.07.2016
Сообщений: 9

Сообщение от dd_smol Посмотреть сообщение
Если честно не совсем понимаю чего вы пытаетесь сделать но ...
Спасибо за помощь. Сделал вот так. Может быть кому понадобится.
window.onload=function(){ 
  var direct = jQuery('.direct_container_afisha') 
  var bottom = jQuery('#bottom_afisha')  
  if (jQuery(window).width() >= 720){
  if (jQuery('#event_tabs .active a[data-id="kino"]').length > 0){direct.hide();  bottom.show();}
 
jQuery('#event_tabs li a[data-id="kino"]').click(function() { direct.hide();  bottom.show();}); 
jQuery('#event_tabs li a[data-id="clubs"]').click(function() {   direct.show(); bottom.hide();});
jQuery('#event_tabs li a[data-id="theater"]').click(function() {direct.show(); bottom.hide();}); 
jQuery('#event_tabs li a[data-id="others"]').click(function() { direct.show(); bottom.hide();} );
  }
}
Ответить с цитированием