The code below is in the head section of my webpage. The HTML for the tags it is referencing(#dmsmenu and #dmssubmenu) are located in an external file that is loaded dynamically when the page loads. The problem is in IE8 specifically (everything works fine in Chrome and Safari). When the page loads, it will go into the function, but not execute the code contained in it. The code changes the background color and text color of the main menu bar, and should display the submenu. Any help would be appreciated.
$(window).load(function() {
$("#dmsmenu").css('background', '#FFFFFF');
$("#dmsmenu").css('color', '#DF7401');
$("#dmssubmenu").appendTo('#dmssubmenu');
$("#dmssubmenu").show();
});
HTML
<tr>
<td align="center" valign="middle">
<div id="menubar_index">
<!--menubar contents are loaded dynamically-->
</div>
</td>
</tr>
<tr>
<td align="center" valign="middle">
<div id="menubar_sub">
<!--menubar contents are loaded dynamically-->
</div>
</td>
</tr>
Ext HTML menubar_index div
<div class="topgradientblueline">
<div id="wrapper">
<div id="menuspacer">
</div>
<div id="dmsmenu" style="font-family:Sans-Serif; font-size:small; text- decoration:none ">
<a href="document_management_solutions.html">Document Management Solutions</a>
</div>
<div id="lsTMFmenu" style="font-family:Sans-Serif; font-size:small; ">
<a href="TMF_solutions.html">Life Science TMF Solutions</a>
</div>
<div id="lssampmenu" style="font-family:Sans-Serif; font-size:small; ">
<a href="lss_solutions.html">Life Science Sampling Solutions</a>
</div>
<div id="drsmenu" style="font-family:Sans-Serif; font-size:small; ">
<a href="about_drs.html">About DRS</a>
</div>
</div>
</div>
Ext HTML menubar_sub div
<div style="height:50px; width:950px;">
<div id="dmssubmenu" style="display: none">
<span class="menu2ndlevel"><a id="dmprofsvc" href="" style="text-decoration:none">Professional Services</a></span>
<span class="menu2ndlevelorangeline">|</span>
<span class="menu2ndlevel"><a id="dmdocimgproc" href="#" style="text-decoration:none">Document/Image Processing</a></span>
<span class="menu2ndlevelorangeline">|</span>
<span class="menu2ndlevel"><a id="dmworkflow" href="#" style="text-decoration:none">Workflow</a></span>
<span class="menu2ndlevelorangeline">|</span>
<span class="menu2ndlevel"><a id="dmsoftware" href="#" style="text-decoration:none">Software Solutions</a></span>
<span class="menu2ndlevelorangeline">|</span>
<span class="menu2ndlevel"><a id="dmdocretieval" href="#" style="text-decoration:none">Document Retrieval</a></span>
</div>
</div>