If you are happy to select all the children of these types:
inputtextareaselectbutton
you can use the selector :input.
jQuery('div.someClass :input').each(function() {...
, , Niklas. , , . , :
jQuery('div.someClass').find('input[type="text"], select, textarea').each(function(){...
, , .