1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <select id='countrySelect'>
- </select>
- <select id='citySelect'>
- </select>
- <script>
- fetch('https://raw.githubusercontent.com/russ666/all-countries-and-cities-json/master/countries.json')
- .then(res => res.json())
- .then(data => {
- console.log(data)
- for(let country in data) {
- console.log(country);
- let countryName = document.createElement(Option);
- countryName.innerText = `${country}`
- }
- })
- console.log(1)
- </script>
- </body>
- </html>
|