I use google pie chart. The pie chart visible in jsfiddle but not HTML file in \[code\]**IE8 document type**\[/code\]. I used code in jsfiddle and I used same code HTML file, The jsfiddle is show the answer what I expected but the HTML file not show the pie chart.Here the fiddle: http://jsfiddle.net/gL7Hm/2/Here the html code\[code\]<html> <head> <script type="text/javascript" src="https://www.google.com/jsapi?fake=.js"></script> <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script> <script type="text/javascript"> google.load("visualization", "1", {packages:["corechart"]}); google.setOnLoadCallback(drawVisualization); function drawVisualization() { var data = http://stackoverflow.com/questions/14040277/google.visualization.arrayToDataTable([ ['Task', 'Hours per Day'], ['Work', 11], ['Eat', 2], ['Commute', 2], ['Watch TV', 2], ['Sleep', 7] ]); var options = { title: 'My Daily Activities' }; var chart = new google.visualization.PieChart(document.getElementById('chart_div')); chart.draw(data, options); } </script> </head> <body> <div id="chart_div" style="width: 900px; height: 500px;"></div> </body></html>\[/code\]May I know whats wrong in this, Its my code bug or jsfiddle bug.Thanks for your advice.