pis #2
@ -33,7 +33,6 @@ async function insertData(json) {
|
||||
<th class="stops">Stations</th>
|
||||
</tr>`
|
||||
div.insertAdjacentHTML("beforeend", tableHtml)
|
||||
const table = document.getElementById('result-table')
|
||||
const data = JSON.parse(json)
|
||||
let results = 0
|
||||
for(var i = 0; i < data.length; i++) { // Break into separate function. Need to
|
||||
@ -44,7 +43,7 @@ async function insertData(json) {
|
||||
results++
|
||||
}
|
||||
tableData += "</table>"
|
||||
table.insertAdjacentHTML("beforeend", tableData)
|
||||
document.getElementById('result-table').insertAdjacentHTML("beforeend", tableData)
|
||||
document.getElementById('result-count').textContent = results
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user