-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
50 lines (46 loc) · 1.49 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
var cityData = null;
var cityHtml = null;
var firstCity;
var i = 0;
function change(){
i = $('#option').val();
}
$(document).ready(function(){
$("#get-info-btn").on("click", function() {
if(cityHtml == null){
$.get("location.html", function(data) {
cityHtml = data;
$("#more-stuff").append(data);
});
} else {
console.log("SB man, SB");
}
if(cityData == null) {
$.get("data.json", function (data) {
cityData = data;
firstCity = data.locations[i].location;
console.log(firstCity);
$(".location-name").append(firstCity);
});
} else {
console.log("still broke")
}
});
$("#more-stuff").on("click", "#more-info", function(){
$(".location-info").empty();
$(".location-info").append("<h3>General Info: </h3>" + cityData.locations[i].info);
});
$("#more-stuff").on("click", "#pop", function(){
$(".location-pop").empty();
$(".location-pop").append("<h3>Population: </h3>" + cityData.locations[i].population);
});
$("#more-stuff").on("click", "#area", function() {
$(".location-area").empty();
$(".location-area").append("<h3>Area: </h3>" + cityData.locations[i].area);
});
$("#more-stuff").on("click", "#remove-place", function(){
$(this).parent().remove();
cityData = null;
cityHtml = null;
});
});