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.

The following code it is auto-explained:

HTML:

<table cellspacing="1" class="CRMP_WP_QUICKADS_PLUGIN">
    <tr id="CRMP_WP_QUICKADS_tr_in_content">
        <td>
            <table>
                <tr>
                    <td>
                        <input type="radio" name="in_content" value="1">
                    </td>
                    <td>
                        Enabled
                    </td>
                </tr>
                <tr>
                    <td>
                        <input type="radio" name="in_content" value="0">
                    </td>
                    <td>
                        Disabled
                    </td>
                </tr>
            </table>
        </td>
    </tr>
    <tr>
        <th colspan="2">
            Hover Ads
        </th>
    </tr>
    <tr>
        <td>
            ...
        </td>
    </tr>
...
</table>

javascript:

$("input[name='in_content']").click(function(){
    if ($(this).val()){
        $("#CRMP_WP_QUICKADS_tr_in_content").nextAll().slice(0,6).show();
    } else{
        $("#CRMP_WP_QUICKADS_tr_in_content").nextAll().slice(0,6).hide();
    }
}); 

The hide/show effect is not running.-

share|improve this question
What error is reported? I think you'll have to enumerate the array that slice returns, you can't call show() on an array. – Jivings May 23 '12 at 19:01
@jivings there is no error. just not works. but FYI: following code works: $(this).closest('tr').nextAll().slice(0,13).fadeOut(); the only differences is that now I replace $(this).closest('tr') by $("#CRMP_WP_QUICKADS_tr_in_content"). to get the desired tr element. – NomikOS May 23 '12 at 19:13
1  
I don't seem to have any problem hiding the elements: jsfiddle.net/s8uc6/1 Perhaps the problem is elsewhere. – Jivings May 23 '12 at 19:23
Yes, there is no problem with that. Question was edited with the solution, tahnks! – NomikOS May 23 '12 at 19:44
You should write your answer below and mark the question as solved. – Jivings May 23 '12 at 20:32
show 1 more comment

2 Answers

Does this work?

$("#CRMP_WP_QUICKADS_tr_in_content").nextAll()
   .slice(0,6)
   .each(function(index, element) {
       element.hide();
});
share|improve this answer
Thanks. No, does not works. Any way element must be $(element) to apply hide() – NomikOS May 23 '12 at 19:18
The element is a jQuery element. – Jivings May 23 '12 at 19:20
No, is not a jquery object! Without $ I have this error: element.show is not a function – NomikOS May 23 '12 at 19:22
// is not enough:

    if ($(this).val())

// it must be:

    if ($(this).val() == 1)
share|improve this answer

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.