Private: Home › Forums › HTML Templates › Trucking – Transportation & Logistics HTML Template › ACCORDION CLOSE [ careers.html ] › Reply To: ACCORDION CLOSE [ careers.html ]
July 9, 2015 at 10:46 am
#3324
Keymaster
Hi again,
Replace these four lines (“trucking / js / include.js”):
if ($(this).next().is(':hidden') === true) {
$(this).next().slideDown('normal');
$(this).addClass("active");
}
with:
if ($(this).next().is(':hidden') === true) {
$(this).next().slideDown('normal');
$(this).addClass("active");
}else{
$(this).next().slideUp('normal');
$(this).removeClass("active");
}
Vladimir