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.
- $("#table tr:gt(0)").each(function () {
- //$(this).find('td').each(function () {
- _myqu = "";
- $(this).find('td input[type="text"]').each(function () {
- if (($(this).attr('id') == "desc") && ($(this).val() == "")) { _myqu += "None" + "/"; }
- else { _myqu += $(this).val() + "/"; }
- });
and here are my comboboxes.
- $("#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.