$(".select2-selection").click(function(event) {
$target = $(event.target);
if (!$target.hasClass('children')) {
$ops.addClass('op');
}
});
$("#some_id").click(function(event) {
event.stopPropagation();
});
$(".tabs_header .wrapper .tab").click(function() {
$(".tabs_header .wrapper .tab").removeClass("active").eq($(this).index()).addClass("active");
$(".tabs_header .tab_item").hide().eq($(this).index()).fadeIn()
}).eq(0).addClass("active");
.tabs_header .tab_item:first-of-type {
display: block;
}
.tabs_header .tab_item {
display: none;
}
$('#leftMenu .menuList').each(function(){
var title = $(this).data('title');
if(title) $(this).prepend('<h4>'+title+'</h4>');
});
$('a.mojnosti').click(function(){
$('html, body').animate({scrollTop: $('#mojnosti').offset().top - 140}, 300);
return false;
});
document.getElementsByTagName("body")[0].setAttribute('style', 'background:url(foto/30.jpeg)');
if($('div:first').is(':visible')){
//необходимые манипуляции с блоками
}
var $second = $('.page-cover-second')
$(window).scroll(function(){
if($(window).scrollTop() > N){
if(!$second.hasClass('act')) $second.addClass('act');
}else{
if($second.hasClass('act')) $second.removeClass('act');
}
});
.page-cover-second{
z-index:3;
opacity:0;
transition: opacity 0.3s;
}
.page-cover-second.act{
opacity:1;
}