I have an ASP.NET server control which produces html. I have no control on the html produced. However I need to style some elements in the html using jQuery. I need to style the div shown below which has no class or id. The first child element which has an id is the Select element which has an id=mySelectID. How do I reference the div element using jQuery?
.......
<div style="height:30px;">
<table cellpadding="0" cellspacing="0">
<tr>
<td height="15px"><select id="mySelectID" ....
.......