I want to get a reference to an elment which has exactly a certain text value with jquery css selector.
Example:
<table >
 <tbody>
  <tr>
   <td>
    <i>MYVAL</i>  <!-- I want the reference to this element-->
   </td>
  </tr>
 </tbody>
</table>
But I cannot succeed in it just writing
$('table tbody tr td i[value="MYVAL"]').SomeFunction();
Which is the correct syntax?
 
     
     
    