I am totally new to jQuery. I wonder if it's possible to change the
background color of any row in the table below where the value of the
table cell belonging to class "numericColumn" is greater than 90? The
values in this column will always be numeric.

Thanks for any help, Lars

            <table class="importResults">
                <tbody>
                    <tr>
                        <td>0</td>
                        <td class="numericColumn">66</td>
                        <td>No significant changes</td>
                    </tr>
                    <tr>
                        <td>491</td>
                        <td class="numericColumn">1</td>
                        <td>Failed DPV because of invalid primary</td>
                    </tr>
                </tbody>
            </table>

Reply via email to