views:

55

answers:

1

Is it possible to prevent IE (7 or 8) to change the underlying code of a page ? My page, built with Dreamweaver, consists of a table with 5 images; each of these is a link to a larger size one. In FF or Chrome, the page displays exactly as planned. In IE, only the first image displays. All other have the "broken img" icon. The code revealed by F12 shows that IE adds the property complete="complete" after the first image.

A: 

You can't change how IE renders, but you can adjust your code such that it's rendering engine handles your code better. I believe that complete="complete" deal has to do with the onreadystate that each element has in the IE DOM.

Could you provide the markup that causes red x's in IE? Did you check to make sure your markup was valid and everything? Are you doing any scripting?

meder
<body class="oneColElsCtr"> <div id="container"><div id="mainContent"><center><a href="http://www.aresti-modelisme.com"><img src="images/sponsor.jpg" alt="aresti" width="200" height="80" longdesc="http://www.aresti-modelisme.com" <table width="800" border="0"><tr><td style="text-align: center; vertical-align: top" width="20%"><a href="images/1.jpg"><img src="icones/1.jpg" /></a><span class="style2">1</span> </td><td style="text-align: center; vertical-align: top" width="20%"><a href="images/2.jpg"><img src="icones/...etc...The URL is http://alpha924.server4you.de:3880/sny/voter.php
Herzog
Sorry, preceding URL was wrong. Here is the correct one.URL is alpha924.server4you.de:3880/sony/voter.php
Herzog
Did you validate the markup? `longdesc="aresti-modelisme.com"; `
meder