Page content does not appear in Explorer

The beginning of the site is here: http://qaa.miltonfame.org/ html and css pass validation checks. The page displays well in all Mac browsers I tried (Safari, Firefox, Camino). The page displays fine in Windows 7 FireFox. In Explorer 8 Windows 7 (and in other versions of the browser through screenshot services there is nothing except the background). The view source indicates that Explorer is receiving content - it simply does not appear on the screen.

I don’t know how to approach this decision - any suggestions would REALLY be appreciated. Thanks a million.

+4
source share
2 answers

Friend, you did not close the script tag for jquery. I saved a local copy and tested it - the content appears after closing the tag.

<script type="text/javascript" charset="utf-8" src="jquery-link" /> 

It should be like this:

 <script type="text/javascript" charset="utf-8" src="jquery-link"></script> 

Hurrah!:)

You also have a script tag and a meta tag at the bottom, which you may need.

+1
source

I am going to take a picture in the dark and say that if you delete the following, you will have better success:

 <!--[if lte IE 7]> <script src="/js/ie7/IE8.js" type="text/javascript"></script> <![endif]--> 

Since you are saying that HTML and CSS pass, you can largely eliminate this. Your source does not look so complicated. This leaves JavaScript, and the only feature of IE in your source is those lines.

0
source

Source: https://habr.com/ru/post/1308616/


All Articles