Twitter Bootstrap バージョン 2.3.0 で HTML ページを作成しています。9 未満の IE はメディア クエリをサポートしていないため、css3-mediaqueries.js を使用しようとしました。ドキュメントには、すべてのcssの後にスクリプトを含めるだけでよいと書かれています。私はそれをしました。以下は私のページレイアウトです。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Responsive page">
<meta name="author" content="Author name">
<title>Responsive page built on Twitter Bootstrap</title>
<link href="css/bootstrap.min.css" rel="stylesheet" type='text/css'>
<link href="css/bootstrap-responsive.min.css" rel="stylesheet" type='text/css'>
<link href="css/my-page.css" rel="stylesheet" type='text/css'>
<link href="css/my-page-responsive.css" rel="stylesheet" type='text/css'>
</head>
<body>
<div class="container">
<!-- My html goes here -->
</div>
<!--[if lt IE 9]>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js">
</script> <![endif]-->
</body>
</html>
しかし、まだ運がありません。ページで HTML5 要素を使用していません。javascript コンソールにエラーは記録されません。
次に、以下の例外をスローするrespond.jsを使用しようとしました。
Unspecified error.
respond.js, line 309
ここで何が間違っていますか?