On your page, there is an ajax:
$.ajax({
type: "GET",
url: "http://localhost/NV_EuroData.csv",
success: function (data) {
$("#nav-home").append(arrayToTable(Papa.parse(data).data));
} });
this ajax load the file NV_EuroData.csv
from your localhost
server. It seems that the mentioned file can not be reached.
so, check whether that file is reached or not, by putting in your browser address bar
http://localhost/NV_EuroData.csv
so if you put that file in the right place, you will display it, so your page would work well.
looking forward to your comments.
Based on your comment
Try to rewrite the file name in both HTML and in the folder in small case letters like nv_eurodata.csv
. and check http://localhost/nv_eurodata.csv
and check the working of the HTML page.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…