Здравствуйте. Есть такой
сайт проблема с табами блока
skrinshoter.ru/s/101219/2kehCXlk вакансий. Не могу понять, почему не сразу определяется высота блока при клике по вкладкам
skrinshoter.ru/s/101219/jRUWc8q8 Помогите пожалуйста решить проблему.
Скрипт
$('.job-list .job-list-title').click(function(event) {
event.preventDefault();
$(this).addClass('active');
$(this).siblings().removeClass('active');
var ph = $(this).parent().height();
var ch = $(this).next().height();
if (ch > ph) {
$(this).parent().css({
'min-height': ch + 'px'
});
} else {
$(this).parent().css({
'height': 'auto'
});
}
});
function tabParentHeight() {
var ph = $('.job-list').height();
var ch = $('.job-list .job-list-content').height();
if (ch > ph) {
$('.job-list').css({
'height': ch + 'px'
});
} else {
$(this).parent().css({
'height': 'auto'
});
}
}
$(window).resize(function() {
tabParentHeight();
});
$(document).resize(function() {
tabParentHeight();
});
tabParentHeight();