I have a web page that retrieves a chart from database, each element in a chart has an (x,y) cordinates.
i load the chart on pageload through javascript call. like this
<script type="text/javascript">
function draw() {
$(".loader").fadeOut(1000);
}
function hide() {
$(".loader").hide();
}
</script>
<div class="loader"></div>
when i use the following , the loading message appear but the positions of elements are not correct all elements are retrieved in the same position
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" />
but when i change the content property to "IE=EmulateIE8", the loading image doesn't appear a but the element positions are correct
Go to the complete details ...