href=\"http://s3.amazonaws.com/codecademy-content/courses/ltp/css/bootstrap.css\"
      Get my location.
     Â
     Â
        var x =document.getElementById(\"demo\");
        functiongetLocation() {
          if(navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(showPosition);
          }else {
            x.innerHTML= \"Geolocation is not supported by this browser.\";
          }
        }
        functionshowPosition(position) {
          x.innerHTML=
            \"Latitude:\" +
            position.coords.latitude+
            \"
Longitude:\" +
            position.coords.longitude;
        }
     Â
     Â
The weather outsideis:
     Â
        Oops.. there isno temperature available for your location right now.
     Â