Can you please take a look at This Demo and let me know why I am not able to run Highcharts.js on the jsfiddle
$(document).ready(function() {
$('pre code').each(function(i, e) {
hljs.highlightBlock(e)
});
You are not closing the $(document).ready(function() {
call. You can view the syntax error you are getting in the developer console of your browser.
Here is a fixed code block for you:
$(document).ready(function() {
$('pre code').each(function(i, e) {
hljs.highlightBlock(e)
});
}); // this is the missing closing });