How to check if there is a class in one of the many li elements, if so call a function ?
There is multiple <div class="selectbox"/> within nested <input type="hidden"/> and <ul /> list. What i need is to check if inside each .selectbox ul is one of many li a element with associated .selected class. If so, pass it's value into <input type="hidden"/> value attribute.
Here is a code:
<div id="selectbox1" class="selectbox">
<input type="hidden" name="selectbox1" />
<ul>
<li><a href="#" name="value01">Option 01</a></li>
<li><a href="#" name="value02">Option 02</a></li>
<li><a href="#" name="value03" class="selected">Option 03</a></li>
<li><a href="#" name="value04">Option 04</a></li>
<li><a href="#" name="value05">Option 05</a></li>
</ul>
</div>
Thank you guys to all of you, i choosed with the lowest ms response time.
