Reputation: 2071
I know this is common problem, I have checked a lot of solution and nothing works. So lets begin:
Common problem: Bootstrap 3 does not work on IE8. I have added respond.js, meta tag, doctype, but without effect.
All of it is hosted on Sharepoint 2007 server, so I'm not working locally
My head:
<!DOCTYPE html>
<html>
<head id="Head1" runat="server">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/_layouts/css/my.css" />
<link rel="stylesheet" type="text/css" href="/_layouts/bootstrap/css/bootstrap.min.css" />
<!--[if lt IE 9]>
<script src="/_layouts/js/html5shiv.js"></script>
<script src="/_layouts/js/respond.min.js"></script>
<![endif]-->
</head>
[if lt IE 9]
around document: after all css files, last thing before etc. nothing helps.Any help?
Upvotes: 0
Views: 2127
Reputation: 2071
Problem solved.
One of css file link was broken.
Seems to Respond.js stops executing after file not found exception.
Upvotes: 1