Can somebody advise me with jQuery selectors.
I have a HTML list (see below) with four flag images in it. When a user rolls over a flag for example italy, I want it to fade out all the other three flags to 50% opacity.
<ul id="flags">
<li id="German"><img src="images/flag_german.jpg" /></li>
<li id="Italian"><img src="images/flag_italian.jpg" /></li>
<li id="Spanish"><img src="images/flag_spanish.jpg" /></li>
<li id="French"><img src="images/flag_french.jpg" /></li>
</ul>