I am a beginner with jQuery and understand the use of addClass(), but I often have wondered, instead of adding a class to an element, how about changing what the class means?
so for example I have a table row:
<tr>
<td class="somethingIMayNotWantToSee">A</td>
<td >B</td>
<td >C</td>
</tr>
I realize the common way to do this is .css('display','none');.. but instead is it possible, feasible even to just change
.somethingIMayNotWantToSee{ display:block; }
to
.somethingIMayNotWantToSee{ display:none; }
or is that already set in the system when the page loads.