Добрый день, подскажите пожалуйста как сделать чтобы при клике на таб добавлялаль #id блока в ссылке /#id. Спасибо заранее.
// Show the first tab countries and hide the rest
$('#tabs-nav li:first-child').addClass('actives');
$('.tab-content').hide();
$('.tab-content:first').show('slow');
// Click function tab countries
$('#tabs-nav li').click(function(){
$('#tabs-nav li').removeClass('actives');
$(this).addClass('actives');
$('.tab-content').hide();
var activeTab = $(this).find('a').attr('href');
$(activeTab).fadeIn('slow');
return false;
});