Поскольку вы используете ids
для добавления содержимого div в репитере.Все элементы повторителя будут иметь идентичные идентификаторы, поэтому ваша логика не будет.Попробуйте это
$(document).ready(function() {
//When page loads...
$(".tab_content").hide(); //Hide all content
$("ul.tabs > li:first-child").addClass("active").show(); //Activate first tab
$(".tab_content:first-child").show(); //Show first tab content
//On Click Event
$("ul.tabs > li").click(function() {
$(this).siblings().removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
var $tabContents = $(this).parent().next().children();
$tabContents.hide(); //Hide all tab content
// var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
//Use the index() method to get the tab to show
$tabContents.eq($(this).index()).fadeIn();
return false;
});
});
Также установите для свойства href anchor значение javascript:void(0)
, в противном случае страница будет прокручиваться при нажатии на вкладку.