-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
29 lines (23 loc) · 938 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
const urlUF = 'https://servicodados.ibge.gov.br/api/v1/localidades/estados'
const cidade = document.getElementById("cidade")
const uf = document.getElementById("uf")
uf.addEventListener('change', async function(){
const urlCidades = 'https://servicodados.ibge.gov.br/api/v1/localidades/estados/' + uf.value + '/municipios'
const request = await fetch(urlCidades);
const response = await request.json()
let options = ''
response.forEach(function(cidades){
options += '<option>' + cidades.nome + '</option>'
})
cidade.innerHTML = options
})
window.addEventListener('load', async ()=>{
const request = await fetch(urlUF);
const response = await request.json()
const options = document.createElement("optgroup")
options.setAttribute('label', 'UFs')
response.forEach(function(uf){
options.innerHTML += '<option>' + uf.sigla + '</option>*'
})
uf.append(options)
})