How to exclude the first td on the click event of jquery that I created below? I want to exclude the all first td of the rows on the click event that produces dialog box.

jQuery("#list tbody tr").click(function(){

//some code here

});

<table>
    <tr>
        <td>first</td>
        <td></td>
        <td></td>
    </tr>
    <tr>
        <td>first</td>
        <td></td>
        <td></td>
    </tr>
</table>
link|improve this question
feedback

migrated from webmasters.stackexchange.com Jan 13 at 3:56

This question came from our site for pro webmasters.

1 Answer

jQuery("#list td").not(":first-child").click(function(){

Though your posted html does not contain #list. I am assuming this exists in the real page.

link|improve this answer
my jquery(this) returns nothing. – mocca Jan 13 at 6:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.