fires when content is loaded into a cell via the attachURL() method
id | string|number | cell id |
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