I have a scenario where I need to use jquery 1.8, but I facing facing 2 problems with highcharts, the graph line is not visible and zoom functionality is also not working properly. I have downloaded the latest hightcharts js, ie, version 2.3.3, is there any work around for this?
Share
You can use
jQuery.noConflict()You need to order your jQuery script tags in a particular order, the one you include first will henceforth be referred using
$and the latter one can be referred usingjQueryor you could also give a name that you want likejq172. Since highcharts internally usingjQueryyou want to the highchart friendly version later.You can now use
$to leverage 1.8.0 features andjQueryorjq172to use 1.7.2prints to console
jQuery version conflict | Highchart & Highstock @ jsFiddle