Check documentation for the latest version of dhtmlxSuite onContentLoaded DHTMLX Docs

onContentLoaded

fires when content is loaded into a cell via the attachURL() method

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

Example

var myCarousel = new dhtmlXCarousel(...);
 
myCarousel.attachEvent("onContentLoaded", function(id){
    // your code here
});
 
myCarousel.cells("a1").attachURL("test_page_1.html");
myCarousel.cells("a2").attachURL("test_page_2.html", true);

Back to top