I have a function that scans a table for a variable (keyID) and selects the table cell that contains that variable. The variable is currently defined as:
selectedTD = table.find('td:contains("' + keyID + '")');
However if keyID = 10, then selectTD will return a value if a table cell contains 10, 100, 1010 etc.
How can I make the variable selectTD only select the table cell when keyID is an exact match, rather than contains?
Use
filter()
to pass each item in the collection through a function that returns true if the item should be included:ETA: If you can control the HTML generated I suggest you add the keyID as a
data-
attribute such as<td data-keyid="keyhere">
. Then you can simply use$('td[data-keyid=' + keyID + ']')