Just trying to improve my selector. I have a lot of rows, but i need to exclude rows that has "table_row valuetemplate" class.
<table>
<tr class="table_row"></tr>
<tr class="table_row"></tr>
<tr class="table_row"></tr>
<tr class="table_row valuetemplate"></tr>
</table>
I know this very fast :
$(".table_row")
This one is much slower:
$(".table_row:not(.valuetemplate")
Is this the only way to exclude?