fires when content is loaded through URL or URL-Ajax attaching
id | string|number | tab id |
var myTabbar = new dhtmlXTabBar("parentId");
myTabbar.addTab("a1", "Some Page A", null, null, true);
myTabbar.addTab("a2", "Some Page B");
myTabbar.attachEvent("onContentLoaded", function(id){
// your code here
});
myTabbar.attachURL("http://some.address.com/some.page.a.html");
myTabbar.attachURL("http://some.address.com/some.page.b.html", true);
Back to top