tags:

views:

33

answers:

1

please any one can slideToggle this ul i use the jquery

<ul id="flags_16">
    <li>
        <a href="#" class="nb">
            <img src="en.png" class="imgvatb">langs</a>

        <ul style="display: none;">
        <li>
            <a href="en" class="nb">
                <img src="en.png" class="imgvatb"> english</a>
        </li>
    </ul>

</li>

+2  A: 

If you have a link in your page, for example with the id 'list_toggle', then something like this should work:

$("#list_toggle").click(function () {
    $("#flags_16").slideToggle("slow");
});

More examples: http://docs.jquery.com/Effects/slideToggle

The MYYN
Or `$("#flags_16 li ul")` if that's the relevant one.
Skilldrick
thanks i make it
moustafa