score:4

Accepted answer

wrap your jquery into an anonymous function to protect the variable from being interfered with by prototype. http://jsfiddle.net/amyamy86/s6ms3/

(function($) {

    $.noconflict();
    $(function () {
        $('#contain').highcharts({
         ....
        });
     });

}(jquery));

Related Query

More Query from same tag