$(".sroll .qselect").find('li').each(function(k) { $(this).on("click", function(e) { e.stopPropagation(); e.preventDefault(); $(this).find(".radio").addClass("active3 fadeInRight animated"); $(this).siblings().find(".radio").removeClass("active3 fadeInRight animated"); switch (k) { case 0: $("#K1").removeClass("hide").siblings().addClass('hide'); break; case 1: $("#K2").removeClass("hide").siblings().addClass('hide'); break; } return false; }) });