Having trouble with a CSS selector:
$("td.cv-table-panel-element")
This selector returns a list of elements, shown in the screenshot linked below:
https://i.stack.imgur.com/RoVMj.png
Each element represents a column in a table with unique content. The first element in this list includes a checkbox:
https://i.stack.imgur.com/NmSjN.png
The goal is to exclude this specific checkbox element from the initial list.
Simply ignoring the first element won't suffice because the checkbox may not always be present. It needs to be excluded based on one of its inner classes.
An attempt that did not work:
$("td.cv-table-panel-element:not(.cv-checkbox)")
Looking for any suggestions or solutions!