score:1

Accepted answer

It's the order of your scripts, you're including highcharts before jQuery. Change the order like so:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

score:1

You need to include the jQuery before Highcharts. Highcharts needs it to plug into.


Related Query

More Query from same tag