Hi!
Just wanted to share a solution that worked for me when I tried to install SPJS Charts.
I followed the user manual, but the setup gor stuck on “Loading charts, please wait”.
I emailed Alex about the issue. He suggested that the script was loading before jquery was loaded.
I tried this solution, and it worked Perfect!
Added the following code to the file “spjs-charts.min.js”
`(function defer() {
if (window.jQuery) {
//ALEX’S CODE
} else {
setTimeout(function () { defer() }, 50);
}
})();