Trying to learn some basic javascript and api usage. Trying to get some weather information from Open Weather Map but none of the alert or console.log requests are being reported by the browser (Chrome).
<script type="text/javascript" src="jquery-3.2.1.min.js">
alert("this works first maybe");
console.log("HEEEELLLLOOOOO");
$(document).ready(function(){
var i = 0;
getJson();
function getJson() {
console.log("getting data now");
$.getJSON("openweatherlink");
}
});
</script>