Published
- 1 min read
check if jquery is installed
The solution for this is noted below
check if jquery is installed
Solution
if (typeof jQuery == "undefined") {
alert("JQuery is not installed");
} else {
alert("JQuery is installed correctly!");
}
Try other methods by searching on the site. That is if this doesn’t work