This was strange, as my body background-image still loaded, however I knew IE wasn\'t rendering the markup past the body tag, though it\'d still parse the actual body tag alone.
Now, once I\'d realised this, I knew it had to be something within the markup, more specifically the HEAD section. Having recently included a <script> tag, this quickly became the suspect.
Unfortunately, and possibly naively, I\'d imagined that the <script> tag, if referencing an external script file, should be self-closed, right? Wrong.
an example code would be:
Code: Select all
<script type="text/javascript" url="http://www.example.com/foo.bar" />Hence the solution is/was:
Code: Select all
<script type="text/javascript" url="http://www.example.com/foo.bar"></script>

