Search code examples
htmlimageinternet-explorer-10

IE 10 images not showing up


I am currently attempting to fix up the huge amount of issues that IE10 is causing when viewing my site. here the current issue that's plaguing me is that all of my images are not showing up, at all. Hoping to get soem help here. If any one knows of a site that has a list of fixes for IE problems that would be appreciated as well.

Taking for example one of the slider I am using I have just simple img calls

<ul class="rslides" id="slider1">
    <li><img id="imgMetrics"  src="jScroller/jScrollerImages/OutlawsOfHealthBanner.png" alt="Outlaws of health guys jumping" ></li>
    <li><img id="imgMetrics"  src="jScroller/jScrollerImages/tugOfWar.png" alt="Tug of war"></li>
    <li><img id="imgMetrics"  src="jScroller/jScrollerImages/welcome.png" alt="Welcome to the family image" ></li>
</ul>

Nothing to special, however IE10 just chews it up and spits it nothing out.

EDIT:: A fellow developer friend of mine, gave me some good ideas, it looks like it's a jQuery issue (Take the module away and it works) so now to work away it that. Thanks every one. EDIT x2:: Alright so I've narrowed the problem down to my flash player, remove that call in my code and it works... so now it's just about figuring out where it's broken from there. If any one happens to see something I'd appreciate it. EDIT x3:: fixed it, ended up being a conflict with some unnecessary js.


Solution

  • I add this to the head section if something does not work in IE10 but it does in other browsers.

     <meta http-equiv="X-UA-Compatible" content="IE=9"/>
    

    Does it work in other browsers?