Estoy intentando verificar si mi biblioteca Jquery está cargada en mi página HTML. Estoy revisando para ver si funciona, pero algo no está bien. Aquí es lo que tengo:Comprobando si jquery se carga usando Javascript
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="/query-1.6.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
if (jQuery) {
// jQuery is loaded
alert("Yeah!");
} else {
// jQuery is not loaded
alert("Doesn't Work");
}
});
</script>
No utilice una R mayúscula en "$ (documento) .Ready" – Serigan
'alerta (ventana. $? 1: 0)' – Thielicious