Reputation: 1812
I am building a web page using HTML5, css3 and Jquery. when I try to view that page in IE x it is not showing page, when I checked in Developer tool, I got following,
I tried clearing cache, changing security level. I am loading my css from local folder and it is linked properly because I can view page complete in other browsers. I googled the same but did not get any clue cause in HTML and CSS tab I can see my code but IE x not showing page. Any Idea why this is so
My Head<>
<head>
<meta content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dashboard</title>
<link href="Content/css/normalize.css" rel="stylesheet" type="text/css">
<link href="Content/css/styles.css" rel="stylesheet" type="text/css">
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.js"></script>
</head>
Upvotes: 0
Views: 567
Reputation: 57075
Testing against the filesystem is generally a bad idea, particularly in modern versions of IE which use multiple different isolation technologies that impact loading of local files.
e.g.
Instead, use a lightweight web server (IIS Express, Cassini, Apache, node.js, etc) to serve your content over HTTP and verify that the problem goes away.
You didn't mention which version of Windows you're using?
Upvotes: 0