Is there a way to remove the "ui-widget-content" class from the code below? It appears in multiple places throughout my code. Here is an example snippet:
<pre>
<form id="clientForm">
<div id="clientData">
<div id="gbox_grid_1" class="ui-jqgrid ui-widget ui-widget-content ui-corner-all">
</div>
<div id="gview_grid_1" class="ui-jqgrid-view">
</div>
<table id="grid_1" class="ui-jqgrid-btable">
<tr class="ui-subgrid subGridLevl2">
<td class="ui-widget-content subgrid-cell">
</td>
</tr>
</table>
</div>
</form>
</pre>
Does anyone have any suggestions for removing this class efficiently?
Thank you!