index.html 799 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <select id='countrySelect'>
  10. </select>
  11. <select id='citySelect'>
  12. </select>
  13. <script>
  14. fetch('https://raw.githubusercontent.com/russ666/all-countries-and-cities-json/master/countries.json')
  15. .then(res => res.json())
  16. .then(data => {
  17. console.log(data)
  18. for(let country in data) {
  19. console.log(country);
  20. let countryName = document.createElement(Option);
  21. countryName.innerText = `${country}`
  22. }
  23. })
  24. console.log(1)
  25. </script>
  26. </body>
  27. </html>