[jQuery] How to change css-style of nested elements
I have such html code:
<ul>
<li><span class="trig">Elements Set 1</span>
<ul>
<li><a href="#">Element 1</a></li>
<li><a href="#">Element 2</a></li>
<li><a href="#">Element 3</a></li>
<li><a href="#">Element 4</a></li>
<li><a href="#">Element 5</a></li>
</ul>
</li>
<li><span class="trig">Elements Set 2</span>
<ul>
<li><a href="#">Element 11</a></li>
<li><a href="#">Element 22</a></li>
<li><a href="#">Element 33</a></li>
<li><a href="#">Element 44</a></li>
<li><a href="#">Element 55</a></li>
</ul>
</li>
<ul>
The idea is to slideToggle() nested <ul> when clickng <span>. So, i
need to point <ul> i need. I don't now how to point jquery look for
element, wich is next to just clicked one...