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?
相关问题
- How to fix IE ClearType + jQuery opacity problem i
- jQuery add and remove delay
- Include empty value fields in jQuery .serialize()
- Disable Browser onUnload on certain links?
- how to get selected text from iframe with javascri
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 usingjQuery
or you could also give a name that you want likejq172
. Since highcharts internally usingjQuery
you want to the highchart friendly version later.You can now use
$
to leverage 1.8.0 features andjQuery
orjq172
to use 1.7.2prints to console
jQuery version conflict | Highchart & Highstock @ jsFiddle