Witam
Mam problem chciałbym wyświetlić na stronie dane pobrane przez API ale gdzieś robię błąd. Czy możecie mi pomóc? https://jsfiddle.net/gt1ofujm/5/
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$.getJSON("http://api.openweathermap.org/data/2.5/weather?q=London", function(result){
$("#city").text(result.name);
});
});
});
});
</script>
</head>
<body>
<button>Get JSON data</button>
<div id="city"></div>
</body>
</html>