Skip to content

Instantly share code, notes, and snippets.

View EnigmaticZee's full-sized avatar
💭
Hacking UX

EnigmaticZee

💭
Hacking UX
  • In your ❤️
View GitHub Profile
@EnigmaticZee
EnigmaticZee / WeatherJSAPI.js
Last active April 24, 2018 16:12
freeCodeCamp Weather API
//FCC
const API_URL = "https://fcc-weather-api.glitch.me/api/current?";
var lat, lon, icon, skyicons, weatherCondition, u;
var i = 0;
var tempUnit = "C"
$(document).ready(function () {
$(".getWeatherBtn").on("click", function () {
alert("Coming Soon")
});