jQuery

Test if jQuery is working

if (typeof jQuery != 'undefined') {
  alert("jQuery library is loaded!");
} else {
  alert("jQuery library is not found!");
}

Last updated