I have included a couple of external JavaScript files in a webpage. These JavaScript works well on all browsers, except IE. On IE, these two files are not included in the webpage. Even on the “Network” section of F12 Developer Tools, it does now display requests to the two external javascript files. Also, I have included two external CSS file on the page. These CSS files also does not get any request too.
What could be the problem?
The page: http://shapco.plus.printsites.com/templates-download.html
The external JavaScript files:
<script type="text/javascript" src="http://templates.kliqprint.us/js/jquery.colorbox-min.js"></script>
<script type="text/javascript" src="http://templates.kliqprint.us/js/templates.js"></script>
The external CSS files:
<link href="http://templates.kliqprint.us/css/colorbox.css" rel="stylesheet" />
<link href="http://templates.kliqprint.us/css/style.css" rel="stylesheet" />
The page has some XML code, which creates the problem on IE. After removing those XML code, it worked great.