All the examples using jQuery correctly includes:
<script type="text/javascript" src="https://canvasjs.com/assets/script/jquery-1.11.1.min.js">
<script type="text/javascript" src="https://cdn.canvasjs.com/jquery.canvasjs.min.js"></script>
I need to use Canvasjs in our intranet also when offline, so I succesfully substituted the second row with:
<script src="../canvasjs-2.3.2/jquery.canvasjs.min.js"></script>
(present in my local server)
It works, but I need to substitute also the first row, with a link to local ‘jquery-1.11.1.min.js’ file.
I already tried to download a “standard” ‘jquery-1.11.1.min.js’ file, but only the “official” file in canvasjs website seems to be working.
Any solution? Is there a downloadable and working ‘jquery-1.11.1.min.js’ file, to install in my local folder?
Thanks