cordova js how to load local file in subdir

JavaScript
var path = window.location.href.replace('index.html', '');
var jsonFile = path + "menus/" + menuc + ".json";
$.getJSON(jsonFile, function(result) {
    sortAllergies(result);
});
Source

Also in JavaScript: