Hi,
In IE the slider can be moved past the end of the slider bar if the div tag is inside a table tag
example code
|
Hi,
In IE the slider can be moved past the end of the slider bar if the div tag is inside a table tag
example code
|
Hi,
You can try to use one of the following approaches:
1) call slider initialization on page loading end:
document.body.onload=function(){
var slider1 = new dhtmlxSlider(“test”, 200,null,false,1,90);
slider1.init();
}
2) using timeout:
window.setTimeout(function(){
var slider1 = new dhtmlxSlider(“test”, 200,null,false,1,90);
slider1.init();
},1);