JQuery: IE Styling Error/Bug on Select attr() change - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T02:06:47Z http://stackoverflow.com/feeds/question/997549 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/997549/jquery-ie-styling-error-bug-on-select-attr-change 0 JQuery: IE Styling Error/Bug on Select attr() change Jimbo 2009-06-15T18:18:31Z 2009-11-10T21:00:02Z <p>Hi Guys,</p> <p>Ive got a problem with IE which is fine in FF, Chrome etc...</p> <p>I have for example a 2 column layout of which for debugging ive emptied the left hand side one. The right hand side has a long list of results in a table with sortable options above it.</p> <p>In this sortable options section is a select box which has options dynamically generated. On update though via $(this).html(...) the content can update fine but when I alter the status of disabled with attr() it breaks the styling of the results below it... It shortens the page height cutting off the showing of results. If I put height in the left hand column with some sort of image or any content it drops in height to the end of the content in that left hand column.</p> <p>It is as though it loses its sense of what is in the right hand column those rerendering for some reason it to not show what is actually in that column.</p> <p>Does anyone have a solution of how I can fix this in jQuery or even force some sort of workaround in the CSS/HTML for IE? Really annoying and im completely out of ideas :(</p> <p>Just making an update with some code:</p> <p>HTML</p> <pre><code>&lt;div id="ctn"&gt;&lt;div id="ctn_wrp"&gt;&lt;div id="ctn_cnt"&gt; &lt;div class="col_l180wrp"&gt; &lt;div class="lay_l"&gt; &lt;div class="col_l180hdr"&gt;&lt;/div&gt; &lt;/div&gt; &lt;div class="lay_mr"&gt; &lt;div style="height:66px;margin:0px 0px 10px 0px;background:url(/images/search/bg-pp-search.gif) no-repeat top left;"&gt; &lt;div style="float:left;width:504px;height:66px;font-size:11px;"&gt; &lt;table cellpadding="4" cellspacing="4"&gt; &lt;tr style="font-size:11px;color:#FFF;font-weight:bold;"&gt; &lt;td&gt;Manufacturer&lt;/td&gt; &lt;td&gt;Model&lt;/td&gt; &lt;td&gt;Network&lt;/td&gt; &lt;td&gt;Phone cost&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;select id="manufacturer" name="manufacturer"&gt; &lt;option value=""&gt;Any&lt;/option&gt; &lt;option value="18"&gt;Apple&lt;/option&gt; &lt;option value="8"&gt;Blackberry&lt;/option&gt; &lt;option value="14"&gt;HTC&lt;/option&gt; &lt;option value="5"&gt;LG&lt;/option&gt; &lt;option value="2"&gt;Motorola&lt;/option&gt; &lt;option value="1"&gt;Nokia&lt;/option&gt; &lt;option value="15"&gt;O2&lt;/option&gt; &lt;option value="3" selected="selected"&gt;Samsung&lt;/option&gt; &lt;option value="24"&gt;Sonim&lt;/option&gt; &lt;option value="4"&gt;Sony Ericsson&lt;/option&gt; &lt;option value="19"&gt;Three&lt;/option&gt; &lt;/select&gt; &lt;/td&gt; &lt;td colspan="3"&gt; &lt;select id="models" name="models" disabled="disabled"&gt; &lt;option value=""&gt;Any&lt;/option&gt; &lt;/select&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;div style="float:left;width:246px;height:66px;"&gt; &lt;input type="image" src="/images/search/bt-compare.gif" id="submit_button" name="submit" value="Submit" alt="Submit" title="Submit" style="margin:8px 0px 0px 12px;" /&gt; &lt;/div&gt; &lt;div class="sp"&gt;&lt;/div&gt; &lt;/div&gt; &lt;/form&gt; &lt;div class="sp"&gt;&lt;/div&gt; &lt;div class="split_l560"&gt; &lt;div id="results"&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class="split_r180"&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class="sp"&gt;&lt;/div&gt; &lt;/div&gt; &lt;div class="col_l180ftr"&gt;&lt;/div&gt; &lt;script type="text/javascript"&gt; var premanufacturer=3; var premodel=522; &lt;/script&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt; </code></pre> <p>The results table would usually go in the div#results but ive stripped it out for now.</p> <p>The layout is a main left column (subnav) which wud be 'layl' then 'lay_mr' is the main one on the right. It has the search filter at the top then under that it splits into 2 cols with the results in the left one of those two. If content is place in the 'layl' or 'split_r180' then the table of results shows to the height of the content in those two columns. At present ive made them empty though.</p> <p>It breaks when a trigger/event/run occurs on select#models. This is being handled by jQuery.</p> <p>It does the callback and then I update the options using .html and once it reaches a change on attr it breaks the heights.</p> <pre><code>$("select#models").html(options); $("select#models").attr("disabled",""); </code></pre> <p>I have also tried removeAttr() with no joy. Really stumped! :-/ As I say absolutely fine with FF and Chrome! Typical IE eh? :*)</p> <p>Thanks for any help guys its greatly appreciated.</p> http://stackoverflow.com/questions/997549/jquery-ie-styling-error-bug-on-select-attr-change/998315#998315 0 Answer by Jimbo for JQuery: IE Styling Error/Bug on Select attr() change Jimbo 2009-06-15T20:50:41Z 2009-06-15T20:50:41Z <p>Ive managed to fix the bug by a way of sort of doubling the work so to speak. I made it hide() and show() again the #results and it makes IE rerender it and realise its height again. Annoying but it fixes the problem :-/</p>