Сообщение от 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();} );
}
}