I am trying to animate this jquery tab, but nothing happening, maybe you know the answer?
I tried to use css transition on "this" block and fadeIn/fadeOut animation, but console always says me "$fadeIn(...) is not a function."
$(document).ready(function(){
$('ul.tabs li').click(function(){
var tab_id = $(this).attr('data-tab');
$('ul.tabs li').removeClass('current');
$('.tab-content').removeClass('current');
$(this).addClass('current');
$("#"+tab_id).addClass('current');
})
})