Note that there are some explanatory texts on larger screens.

plurals
  1. POPage does not load properly in IE9
    text
    copied!<p>My home page works fine in all browsers but IE9 where part of the page does not load. Below a main image on my page I have 6 boxes with some animation etc. IE 9 does not display those boxes and I don't understand why. Any ideas?</p> <p><em><strong>NOTE</em></strong> - I cannot test this in IE 9 (I am using Windows XP) I have had this reported to me and verified this through several people)</p> <p>Here is the code:</p> <p><strong>JAVASCRIPT</strong></p> <pre><code>var $j = jQuery.noConflict(); $j(document).ready(function(){ Engine.Initialize(); if( !$j('body').hasClass('index') &amp;&amp; !$j('body').hasClass('homepage') ) { } }); var Engine = { Initialize: function() { Engine.Homepage_Animation(); }, Homepage_Animation: function() { if( !$j.browser.msie ) { $j('#homepage-main-item img').hide().fadeIn(700, function(){ $j(this).css('display', 'block'); $j('#homepage-boxes .boxes').each(function(i) { $j(this).delay(100 * i).animate({ opacity: 1 }, 300); }); }); } else { $j('#homepage-main-item img').css('display', 'block'); $j('#homepage-boxes .boxes').css('opacity', 1); } } } </code></pre> <p><strong>HTML</strong> </p> <p>(The HTML code below is for only 1 box. To view the entire code please click the link below)</p> <pre><code>&lt;div class="boxes-content"&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&lt;/p&gt; &lt;/div&gt; </code></pre> <p>Please Note that I did not create this code, a friend created it for me and he has not responded.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload