// Define //-------------------------------------------- var prev = $(".slider-prev"); next = $(".slider-next"); // Method //------------------------------------------- function sliderPrev() { $(this).toggleClass("active"); $(this).next().fadeToggle(); $(".slider-item:nth-child(2)").toggleClass("active"); } function sliderNext() { $(this).toggleClass("active"); $(this).prev().fadeToggle(); $(".slider-item:nth-child(3)").toggleClass("active"); } // Event //------------------------------------------- prev.on("click",function(){ sliderPrev.call(this); }); next.on("click",function(){ sliderNext.call(this); });