Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have three td's inside of #mainmenu.

<table cellpadding="0" cellspacing="5" id="mainmenu">
    <tbody>
        <tr>
            <td valign="top" class="menu_sub">
                something
            </td>
            <td valign="top" class="menu_sub">
                something
            </td>
            <td valign="top" class="menu_sub">
                something
            </td>
        </tr>
    </tbody>
</table>

I want to remove the first two td's inside of my table, how can i do that?

$('#mainmenu td').remove();
share|improve this question

2 Answers

up vote 18 down vote accepted

Use the less than selector. Here is a jsfiddle

$('#mainmenu td:lt(2)').remove();
share|improve this answer
Quick, aaaargh. – karim79 Mar 8 '11 at 22:23
@karim79 - just good timing :) – Josiah Ruddell Mar 8 '11 at 22:25
I think I've had too much wine. My initial instinct was $("table").find("td:eq(0), td:eq(1)").remove();. How awful! I've answered this at least 10 times before. No more wine for me. – karim79 Mar 8 '11 at 22:28
@karim79 - Haha, there is no law against intoxicated coding. Your SO points may suffer for it tho! – Josiah Ruddell Mar 8 '11 at 22:31

http://api.jquery.com/first-selector/

 $('#mainmenu td:first').remove();
 $('#mainmenu td:first').remove();
share|improve this answer
oh , yeah better use Josiah's answer – n00b Mar 8 '11 at 22:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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