hello,
I want to have the faq style from EVENT- template in my quark template. Is that possible? And if yes what do I have to do? ( I think every template needs this good looking FAQ style
thank you so much for help, claudia
/* FAQ */
/* Venue */
// FAQ
jQuery('.gk-faq').each(function(i, faq) {
var dt_list = jQuery(faq).children('dt');
dt_list.each(function(i, dt) {
dt = jQuery(dt);
dt.click(function() {
dt_list.each(function(j, dt_element) {
if(i !== j) {
jQuery(dt_element).removeClass('active');
}
});
dt.toggleClass('active');
});
});
});
jQuery(document).ready(function() {
}