$(function () { $('.jobs_list li').click(function () { if ($(this).hasclass("active")) { $(this).removeclass('active'); $(this).find('.jobs_hide').slideup(); } else { $(this).addclass('active').siblings().removeclass('active'); $(this).find('.jobs_hide').slidedown(); $(this).siblings().find('.jobs_hide').slideup(); } }); $('.jobs_list li')[0].click(); })