function toggleFaq(el) { const $box = $(el).closest('.faq_box'); const $answer = $box.find('.answer'); $box.toggleClass('on'); $answer.stop(true, true).slideToggle(300); // ºÎµå·´°Ô ¾Ö´Ï¸ÞÀÌ¼Ç }