Check documentation for the latest version of dhtmlxSuite onContentLoaded DHTMLX Docs

onContentLoaded

fires when content is loaded into cell via attachURL()

void onContentLoaded(string|number id);
idstring|numbercell id

Example

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