Using jQuery, how can I remove the class header from all <th> elements with the attribute nofilter="True"?
<th class="header" nofilter="True" scope="col" align="left">City</th>
The result should be:
<th nofilter="True" scope="col" align="left">City</th>
Use the Attribute Equals Selector: