Start ajax
This commit is contained in:
parent
db7b0175cc
commit
dab27ceaf3
2 changed files with 36 additions and 2 deletions
|
@ -28,7 +28,6 @@ csv()
|
|||
.fromFile("world_data.csv")
|
||||
.then((jsonObj) => {
|
||||
json = jsonObj;
|
||||
console.log(jsonObj);
|
||||
})
|
||||
|
||||
/**************************************************************************
|
||||
|
|
|
@ -1 +1,36 @@
|
|||
alert("No ajax calls implemented ;)");
|
||||
|
||||
$("#filter_countries").click(function () {
|
||||
alert("filter");
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
$("#show_selected_prop").click(function () {
|
||||
alert("filter");
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
$("#hide_selected_prop").click(function () {
|
||||
alert("filter");
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
$("#submit_country").click(function () {
|
||||
alert("properties");
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
$("#rm_submit").click(function () {
|
||||
alert("properties");
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
$("#delete_country").click(function () {
|
||||
alert("properties");
|
||||
|
||||
return false;
|
||||
});
|
Loading…
Reference in a new issue