Here is a sample of my HTML code:
<table class="disabled">
<tr>
<td>
<input blah blah>
</td>
<td>
<img id="reallyLongASP.NetID" etcetc/>
</td>
</tr>
</table>
I am looking to hide the <img>
element inside all tables with a class of "disabled". I know I can target specific controls using the ASP.Net ID, but I would prefer to make a general statement that applies to all controls within the <table>
.
Thank you for any assistance provided.