I have a JSON file filled with various data and I'm trying to use AJAX to display it. Despite my efforts, I couldn't get it to work and after extensive research online, I decided to reach out for your assistance:
$(document).ready(function () {
$.getJSON("data/liste_des_sites_des_hotspots_paris_wifi.json").done(function(){
function getData (data) {
console.log(data)
}
})