What is the simplest way to iterate through all select drop downs with ID\'s matching a pattern using jquery. for example:
.
Try using attribute starts with selector
$("select[id^='begin_'").each(function(){ //your stuff })