input fields and combobox. How can I loop through both of them at the same time?

input fields and combobox. How can I loop through both of them at the same time?

I have 8 input fields and 3 comboboxes and I wanna get the values of all of them without having to use ids or classes. 


  1.                    $("#table tr:gt(0)").each(function () {

  2.                        //$(this).find('td').each(function () {
  3.                        _myqu = "";

  4.                        $(this).find('td input[type="text"]').each(function () {
  5.                            if (($(this).attr('id') == "desc") && ($(this).val() == "")) { _myqu += "None" + "/"; }
  6.                            else { _myqu += $(this).val() + "/"; }

  7.                        });
  8.  

I used " find('td input[type="text"]')" but it doesn't retrieve the value of comboboxes. Isn't a combobox an input? 

And I don't want to use classes or ids because only the first row of inputs and comboboxes are not created programmatically. 

  1.                        $("#table tr:last").after("<tr><td width='20%'><select type='text' id='legcomb-" + txtid + "'></select></td><td width='19%'><select id='subcomb-" + txtid + "'></select></td><td style='padding-left:10px;'><select type='text' style='width: 150px'><option value='opt1'>Option A</option><option value='opt1'>Option B</option><option value='opt2'>Optin C</option><option value='opt3'>Option D</option></select></td><td><input type='text' id='desc' style='width: 240px'/></td><td><input type='text' id='amount-" + txtid + "' style='width: 140px'/></td><td><input type='text' id='dorc-" + txtid + "' class='d_orc' maxlength='1' style='width: 40px'/></td></tr>");

Please help. It is driving me crazy!