Issue with google chrome, please help.

Issue with google chrome, please help.

I loop through inputs on my page and two of my inputs are autocomplete combobox. I get the value through looping on Internet explorer but on chrome, I don't get the values of it. Is there any solution for that?

this is the loop.
  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.                        });
and here are my comboboxes.

  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;'><input type='text' style='width: 140px'/></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>");

I need to read it as an input field like on internet explorer.