What is the simplest way to select the tallest image of a list using jQuery ?
Structure:
<ul class="gallery">
<li><img width="100px" height="300px" src="1.jpg"></li>
<li><img width="100px" height="200px" src="2.jpg"></li>
<li><img width="100px" height="500px" src="3.jpg"></li>
</ul>