The code below uses this.value to get the value of the form dropdowns. Usually I saw only .val (). Is below a cross browser acceptable (especially older versions of IE)? Thanks!
$(':input', '#all').each(function() { alert(this.value); });
source share