As usual, option elements are shown when a select element is clicked and I\'d like to get the height of the option elements.
Thanks.
Edit @d
I believe this is what you want
$(document).ready(function () { $("#mySelect").change(function () { alert($(this.options[this.selectedIndex]).height()); }); });
Here is a demo http://jsfiddle.net/xf3wD/