I have a select
of cities that is populated dynamically with the query returned in the databases, however when the values in the option
is played the default value empty some prevents select an empty line.
See:
Select
supplied:
HerearecodesthatsupplySelect
:
functionfunc(){if(ajax.readyState==4&&ajax.status==200){eval(ajax.responseText);if(dados.erro){alert(convertHtml(dados.erro));}else{varvazio="";
var cidades = dados.split(",");
var html = "";
for(var i = 0; i < cidades.length; i++)
{
html = '<option>'+cidades[i]+'</option>';
document.getElementById('cidade').innerHTML += html;
}
}
}
}
<label for="cidade">Cidade: <br>
<select name="cidade" id="cidade" value="<?=$MunNome?>" class="campos_menu" style="width:110px;">
<option value=""></option>
</select>
</label>