Есть JS скрипт который парсит JSON файл
$(document).ready(function() {
$.getJSON("js/gg.json", function(data) {
f = JSON.parse(data);
f = f.name
});
});
И сам JSON файл
{"name": true}
Должно работать, но выдает ошибку
некорректноgg.json:1:1
SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data