forum

Home / DeveloperSection / Forums / What are the alternate ways to find next().next() in jquery

What are the alternate ways to find next().next() in jquery

Anonymous User261908-Apr-2013
Hi All!

I want to change the css attribute of element which is just next to next of selector.

I have used this syntax

$('#hide').next().next().css('display', 'block');
but i think there can be another better approach can be use like find() or eq()

<li class="expandable">
    <div class="hitarea collapsable-hitarea"></div>
    <div id="hide" class="hide"></div>
    <a href="#" class=""> <strong>Stitched</strong> </a>

    <ul style="display: none;" id="hi">
        <li> <a href="#"> Hand Block Print </a> 
        </li>
        <li> <a href="#"> Designer </a> 
        </li>
        <li class="last"> <a href="#"> Screen Printed </a> 
        </li>
    </ul>
</li>

Advance thanks!

Updated on 08-Apr-2013
I am a content writter !

Can you answer this question?


Answer

2 Answers

Liked By