DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Iterating All Dropdowns On A Page Using Jquery
var selects = document.getElementsByTagName("select");
$.each(selects, function() {
alert(($(this)).val());
});





