how to write a very refined selector
I am trying to write a selector that selects all <tr> that contain "<code>name</code>"
Ive tried :
- $("tr:contains(<code>"+value+"</code>)");
It only returns only 1 <tr> when in fact there are multiple <tr> that contain these values.