script.js 1.02 KB
$(document).ready(function(){
    $(".active").click(function(){
        return false;
    });
    $(".post_1 .more").click(function(){
        $(this).parent().find('.spoiler').toggle(500);
        return false;
    });
    $(".button2 a, .button3 a").click(function(){
        $(this).toggleClass('opened');
        $(this).parent().find('.spoiler').toggle(500);
        $(this).parent().find(".checked").removeClass("checked");
        return false;
    });
    $('.spoiler input[type="radio"]').click(function(){
        if($(this).is(":checked")){
            $(this).parent().parent().find(".checked").removeClass("checked");
            $(this).parent().addClass('checked');
            return false;
        }
        else{
            $(this).parent().removeClass('checked');
            return false;
        }
    });
    $(".more_colls").click(function(){
        $(this).toggleClass('opened');
        $(this).parent().parent().find(".spoiler").toggle(500);
        return false;
    });
    
});