Web page contains 24 iframes which are refreshed periodically using meta refresh in iframe content:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="25">
<base target="_parent" />
<link href="/store/Content/Css/Site.css" rel="stylesheet" type="text/css" />
</head>
<body>
<a class="picture ui-corner-all"
href="/store/Store/Details?product=FRUNBLUEJASS">
<img src="/store/Store/MainImageThumb?product=FRUNBLUEJASS" />
</a>
</body>
</html>
In Internet Explorer 10 after page is refreshed by pressing F5, error
HTML1509: Unmatched end tag.
store, line 470 character 5
appears in IE developer tools console tab and bottom group text in page appear in single column. In Chrome page is rendered properly without error. I verified that all tags are matched in page. How to fix this ?
jquery, jquery iu, mono/ASP.NET MVC3 are used.
<div id="container">
is missing. In site this is present and all tags match. Message was caused by nesting div inside p element. About refreshing 24 images I posted question in #16807750 . Can you answer it also ? – Quintilla