javascript capturing fix
This commit is contained in:
parent
b83668a398
commit
e9178ecbba
1 changed files with 3 additions and 2 deletions
|
@ -12,7 +12,7 @@ window.onload = function(){
|
||||||
"Location"
|
"Location"
|
||||||
]
|
]
|
||||||
//Generate HTML table
|
//Generate HTML table
|
||||||
for (pagePath of pages){
|
for (const pagePath of pages){
|
||||||
//Adds new table row based on the data request
|
//Adds new table row based on the data request
|
||||||
const $newTableRow = $("<tr>"
|
const $newTableRow = $("<tr>"
|
||||||
+ "<td>Hello " + pagePath + "</td>"
|
+ "<td>Hello " + pagePath + "</td>"
|
||||||
|
@ -24,8 +24,9 @@ window.onload = function(){
|
||||||
}
|
}
|
||||||
|
|
||||||
//Gets Table data from server
|
//Gets Table data from server
|
||||||
for (pagePath of pages){
|
for (const pagePath of pages){
|
||||||
$.get(serverPath + pagePath.toLowerCase(), function(data){
|
$.get(serverPath + pagePath.toLowerCase(), function(data){
|
||||||
|
console.log(pagePath + "|" + data);
|
||||||
document.getElementById("hello-" + pagePath.toLowerCase()).innerHTML = data;
|
document.getElementById("hello-" + pagePath.toLowerCase()).innerHTML = data;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue