Quiero incluir jquery.js en el archivo myjs.js. Escribí el código a continuación para esto.¿Cómo incluir jquery.js en otro archivo js?
var theNewScript=document.createElement("script");
theNewScript.type="text/javascript";
theNewScript.src="http://example.com/jquery.js";
document.getElementsByTagName("head")[0].appendChild(theNewScript);
$.get(myfile.php);
Aparece un error en la 5ª línea que es '$ no definido'. Quiero incluir jquery.js y luego quiero llamar a la función $ .get() en el archivo myjs.js. ¿Cómo puedo hacer esto? Por favor, ayúdenme
¿Por qué intentas usar $ .get() fuera de una página? – Calum
Supongo que quisiste decir '$ .get (" myfile.php ");' en lugar de '$ .get (myfile.php);'. –
posible duplicado de [verificar si se ha cargado jquery, luego cargarlo si es falso] (http://stackoverflow.com/questions/1828237/check-if-jquery-has-been-loaded-then-load-it-if -false) –