fires when content is loaded into cell via attachURL()
id | string|number | cell id |
var myAcc = new dhtmlXAccordion(...);
myAcc.attachEvent("onContentLoaded", function(id){
// your code here
});
myAcc.cells("a1").attachURL("test_page_1.html");
myAcc.cells("a2").attachURL("test_page_2.html", true);
Back to top