I have a table with some cells and I am looking to utilize JQuery to select specific cells.
For example:
<td>John Doe</td>
<td>John Doe1</td>
<td>1John Doe</td>
I want to select cells that start with 1
, include Doe
, and end with 1
.
Can someone guide me on how to achieve this using JQuery?