Hello. How to use jQuery to pull out all the first table cells and determine the one that contains a specific value? It is necessary to choose the first .
Thank.

    1 answer 1

    For example:

    jQuery("table tr").find("td:first").each(function(){ if (jQuery(this).html() == "<b>первые</b>") console.log(this); }) 

    There are other solutions)

    <execute>