change weather

by al nmeri

HTML

<div id=testing> TEST</div>

CSS

* {
	  margin: 0;
	  padding: 0;
	}
	
	body {
	  background: #333;
	}
	
	#testing {
	  border: 1px solid silver;
	  width: 400px;
	  height: 100px;
	  color: white;

JavaScript

var testDiv = document.getElementById("testing");
window.addEventListener("load", function() {
  if ("geolocation" in navigator) {
    navigator.geolocation.getCurrentPosition(function(position) {
      alert("what na"); // from this point on does not run
      testDiv.innerHTML = "http://api.openweathermap.org/data/2.5/weather?lat=" + position.coords.latitude + "&lon=" + position.coords.longitude + "&appid=0efb8882d1ca5b5c342e2ea6cd1183bf";
      //var jsonObj
    });
  } else {
    testDiv.innerHTML = "Geolocation is not supported by this browser.";
  }
});