Looking to build a work-around of the following.
$.getJSON(\'myfile.json\', function (data) { showAll(data); });
I want to avoid using a we
If it is static JSON resource, why make another network request. Network is expensive. You can change to .js and include the file in the page.