Find out Div element with in the Div
How can i find out the div element with in the Div?
This is my aspx Page Code
This is for Fixed Table Header when table has thead and tbody tags
<div id="gridDiv" class="fullScreenTable">
<asp:GridView ID="gvMyRecipesData" runat="server" AllowSorting="true" ShowHeader="true" >
</asp:GridView>
</div>
but in My Browser (IE8) shows like this
<div id="gridDiv" class="fullScreenTable">
<div>
(This div automaticaly created by Browser)
<table cellspacing="0" border="0" id="ctl00_ContentPlaceHolder1_gvMyRecipesData"
style="border-collapse:collapse;">
<thead>
<tr>
<th></th><th></th><th></th><th></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
</div>
The fullScreenTable class should be aplied to inner div of gridDiv and i have to assign a id for that div. how can i do that?