[jQuery] Flexbox json_encode ??

[jQuery] Flexbox json_encode ??


I have a strange problem, I'm trying to use Flexbox. I can use the
JSON array when I output the array to a file and call it from within
the html, but when I try to go direct to the file it won't work.
I'm guessing my problem is with the json_array.
I run json_generator.php > json.txt
Flexbox:
<script type="text/javascript">
$(document).ready(function() {
$('#fb').flexbox('json.txt')
});
It works, but when I use:
<script type="text/javascript">
$(document).ready(function() {
$('#fb').flexbox('json_generator.php')
});
It doesn't work. I can't figure it out. Is there something I need to
do in the json_generator.php to make it look like a text file output?