Reputation: 137
That's it. I dont know why, but my Internet explorer doesnt load external js files. JS is enabled on the browser. And the files are working on other browsers like Chrome, Firefox, Opera or even Safari... I dont know why really... I need help real fast...
head-tag:
<head>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<meta charset="UTF-8" />
<meta name="author" content="Antonio Bueno González" />
<meta name="description" content="Descripción de la página web" />
<meta name="keywords" content="Palabras clave" />
<meta name="viewport" content="width=device-width" />
<script type="text/javascript" src="js/javascript.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<title>tapeHD</title>
</head>
P.D.: Furthermore, there're no error in console... It's quite strange.
Upvotes: 1
Views: 2493
Reputation: 411
I also had a similar problem, until I discovered that the script contained an new function that only Google managed to run, whereas IE did not know it yet and issued an error message, so the entire script did not load at all !!!
Upvotes: 1