Hi,
I have below code in my vb.net application!
<table cellspacing="0" cellpadding="0" border="0" style="border-collapse: collapse;" id="ctl00_ContentPlaceHolder2_FormView1" class="innerGridTable">
<tbody>
<tr>
<td colspan="2">
<tr>
<td>
<b>VenueID:</b>
</td>
<td>
<span id="ctl00_ContentPlaceHolder2_FormView1_VenueIDLabel">3</span>
</td>
</tr>
<tr>
<td colspan="4">
<asp:Button ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update"
Text="Update" CssClass="Button" />
<asp:Button ID="ibtnNewTrainer" runat="server" CausesValidation="False" CommandName="New"
CssClass="Button" Text="New Trainer" />
<asp:Button ID="ibtnSearchCourse" runat="server" CausesValidation="False" CommandName="Search"
CssClass="Button" Text="Search Course" />
</td>
</tr>
</td>
</tr>
</tbody>
</table>
If you see first TR it is blank having just <td colspan="2"></td>
without any data. Now I want to delete complete TR using Jquery when there is no data in TD like above condition.
Thanks.
Best Regards, MS