$(function(){ $(".showcase-controls .dav-btn").on("click",function (e){ //Style $(this).closest(".showcase-controls").find(".dav-btn").removeClass("active"); $(this).addClass("active"); //Slider controller var target = $(this).data("target"); $(this).closest(".showcase-controls").parent().find(".es-slide").removeClass("active"); $(this).closest(".showcase-controls").parent().find(".es-slide").each(function (e){ if($(this).data("slide") == target) { $(this).addClass("active"); // Break on positive result return false; } }); }); });