Div not properly hiding in IE - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T09:49:44Z http://stackoverflow.com/feeds/question/817887 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/817887/div-not-properly-hiding-in-ie 0 Div not properly hiding in IE maciej.gryka 2009-05-03T20:13:16Z 2009-05-08T23:03:28Z <p>I've got few divs on my website - on the load I want some of them to be hidden, some shown. I am hiding the ones I don't want like this:</p> <pre><code>$(".divToHide").hide(); </code></pre> <p>It works well in Chrome, Firefox, IE8 an Opera... It doesn't in IE6 (I haven't tested on previous version yet...) - when I load the page all the divs are hidden properly. When I click a link that makes one of them visible it appears correctly. The problems shows when I click on a different link that's supposed to hide the first div and show another. The text of the first div is hidden, but the image stays and obstructs the newly shown div. I'm pretty sure it's a bug - when I zoom in or out of the page the divs that were supposed to be hidden disappear suddenly - they're only visible when I load the page.</p> <p>Is there a way around it?</p> <p><b>EDIT:</b> I'm using jQuery v1.3.2</p> <p><b>EDIT:</b> Unfortunately the solution of using <code>addClass</code> to add css class that states <code>display: none</code> doesn't really work - it seemed like it did at first, but the problem is still there.</p> <p><b>UPDATE:</b> The js file I wrote can be found <a href="http://ankepohl.com/js/clickHandlers.js" rel="nofollow">here</a>, while the html <a href="http://ankepohl.com/index_trial.html" rel="nofollow">here</a>. The problem I have is that when you go from one portfolio to the other, the image of the first one stays there obstructing the next, even though it should be hidden (text underneath changes correctly). Wrong disappears when you try to zoom in/out of the page.<br/> I used to hide all portfolios using <code>$("#divId").hide()</code>, but as was pointed out below, I now use <code>$(".classToHide").hide()</code>.</p> <p><b>UPDATE:</b> The problem is solved on IE8 - I forgot to include the standards mode declaration... However, on IE6 it's still the problem.</p> http://stackoverflow.com/questions/817887/div-not-properly-hiding-in-ie/817891#817891 2 Answer by RichieHindle for Div not properly hiding in IE RichieHindle 2009-05-03T20:14:24Z 2009-05-03T20:25:14Z <p>Just a thought: you're not using an old (pre-IE8) version of jQuery, are you?</p> <p><strong>Edit:</strong> No, grycz is using the current version.</p> http://stackoverflow.com/questions/817887/div-not-properly-hiding-in-ie/817915#817915 0 Answer by JerSchneid for Div not properly hiding in IE JerSchneid 2009-05-03T20:21:28Z 2009-05-03T20:21:28Z <p>Are you sure that hide() function call is even getting called on the page load? Try putting an <code>alert('hi')</code> right before that function call, and see if that happens in IE8. </p> http://stackoverflow.com/questions/817887/div-not-properly-hiding-in-ie/817927#817927 2 Answer by redmoskito for Div not properly hiding in IE redmoskito 2009-05-03T20:26:18Z 2009-05-04T17:17:40Z <p><strong>Edit: simplified to use toggleClass()</strong></p> <p>You could try doing it manually, like toggling a css class called "hidden." It might look something like this:</p> <pre><code>function myToggle(element_id) { mydiv = $('#' + element_id); mydiv.toggleClass("hidden");; } </code></pre> <p>And your css file would have:</p> <pre><code>.hidden { display:none; } </code></pre> <p>I haven't tested this, but this is the kind of workaround I imagine you'd want to think about if this is, indeed, a bug in jQuery/IE8.</p> http://stackoverflow.com/questions/817887/div-not-properly-hiding-in-ie/817939#817939 3 Answer by Thomas Stock for Div not properly hiding in IE Thomas Stock 2009-05-03T20:31:38Z 2009-05-03T20:31:38Z <p>You're hiding multiple div's by using an ID selector?</p> <p>Try giving those div's a class "divToHide" and then use:</p> <pre><code>$(".divToHide").hide(); </code></pre> <p>Maybe IE8 handles duplicate id's in another way than those other browsers..</p> http://stackoverflow.com/questions/817887/div-not-properly-hiding-in-ie/819503#819503 0 Answer by Sushim for Div not properly hiding in IE Sushim 2009-05-04T09:49:30Z 2009-05-04T09:49:30Z <p>try </p> <p>$("#divToHide").css('display:none');</p>