Accordion

Hi,



Just a simple question,



How to get Accordion active item ?



Is there a function to do that ?



Thank’s


Hello,


you can try to use onActive event. It occurs when a cell opens:


open_cell = “”;


accordion.attachEvent(“onActive”, function(id){


open_cell = id;


});

Thanks