Chartjs-Does ChartJS supports Jquery 3.4.1

1👍

As per the official docs it’s not mentioned. Here

You can check this using-

$ === jQuery

OR

window.onload = function() {
    if (window.jQuery) {  
        // jQuery is loaded  
        alert("Yeah!");
    } else {
        // jQuery is not loaded
        alert("Doesn't Work");
    }
}

Leave a comment