I suggest that after running dgCidadesEstados
, you can use removeChild
, for this you will need two loops and a if
, for example:
Note: I recommend upgrading the library to version 1.4 (27/05 / Github and googlecode are not hosts (cdns) of codes, I recommend that you copy .js
to your server
var estados = document.getElementById('estado');
var cidades = document.getElementById('cidade');
cidades.onchange = function()
{
if (cidades.value !== "") {
//Para o redirecionamento troque esta linha por window.location
//veja o exemplo no final da resposta para ter um exemplo
alert(estados.value + " - " + cidades.value);
}
};
new dgCidadesEstados({
estado: estados,
cidade: cidades,
estadoVal: '<%=Request("estado") %>',
cidadeVal: '<%=Request("cidade") %>'
});
var opts = estados.getElementsByTagName("option");
var i = 0, j = opts.length, e, remove = [];
for (; i < j; i++) {
e = opts[i];
if (e.value !== "" && e.value !== "MG" && e.value !== "SP") {
//Pega o elemento que será removido e adiciona ao vetor/array
remove.push(e);
}
}
i = 0;
j = remove.length;
for (; i < j; i++) {
//Remove todos que são diferentes de Minas Gerais, São Paulo e vazio (este ultimo equivale ao "Selecione um estado")
estados.removeChild(remove[i]);
}
<script src="//rawgit.com/robertocr/cidades-estados-js/master/cidades-estados-1.4-utf8.js"></script>
<select id="estado"></select>
<select id="cidade"></select>
If you want to redirect after selecting the city, use the event change
, as in the example the beginning of the code should look like this ( link ):
window.onload = function() {
var estados = document.getElementById('estado');
var cidades = document.getElementById('cidade');
cidades.onchange = function()
{
if (cidades.value !== "") {
//Basta modificar está linha conforme a necessidade
window.location = "pagina.asp?estado=" + estados.value + "&cidade=" + cidades.value
}
};
new dgCidadesEstados({
estado: estados,
cidade: cidades,
estadoVal: '<%=Request("estado") %>',
cidadeVal: '<%=Request("cidade") %>'
});
var opts = estados.getElementsByTagName("option");
var i = 0, j = opts.length, e, remove = [];
for (; i < j; i++) {
e = opts[i];
if (e.value !== "" && e.value !== "MG" && e.value !== "SP") {
//Pega o elemento que será removido e adiciona ao vetor/array
remove.push(e);
}
}
i = 0;
j = remove.length;
for (; i < j; i++) {
//Remove todos que são diferentes de Minas Gerais, São Paulo e vazio (este ultimo equivale ao "Selecione um estado")
estados.removeChild(remove[i]);
}
};