“Verifique se o jQuery está instalado” Respostas de código

Verifique se o jQuery está carregado

$(document).ready(function(){
  if (jQuery) {  
    // jQuery is loaded  
    alert("Yeah!");
  } else {
    // jQuery is not loaded
    alert("Doesn't Work");
  }
});
Gnusson.net

Teste se o jQuery funciona

/* Answer to: "test if jquery works" */

window.onload = function() {
    if (window.jQuery) {  
        // jQuery is loaded  
        console.log("jQuery has loaded!");
    } else {
        // jQuery is not loaded
        console.log("jQuery has not loaded!");
    }
}
TigerYT

Verifique se o jQuery está instalado

if (typeof jQuery == "undefined") {
  alert("JQuery is not installed");
} else {
  alert("JQuery is installed correctly!");
}
Helpless Hamster

Como verificar se o jQuery é carregado

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

Respostas semelhantes a “Verifique se o jQuery está instalado”

Perguntas semelhantes a “Verifique se o jQuery está instalado”

Mais respostas relacionadas para “Verifique se o jQuery está instalado” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código