I know virtually nothing about J-Query/Javascript, so this might be something obvious. I'm using the J-query plugin called Datatables. I'm trying to use the AJAX source method in accordance to the documentation here.
I'm initializing it like this:
<script>
$(document).ready(function() {
$('#filetable').dataTable( {
"bProcessing": true,
"sAjaxSource": '/filelist.json'
} );
} );
</script>
There's no fancy server side processing here. There's simply a file on the web server called filelist.json, and that's what I want. However my server is showing the request URL it's being given as /filelist.json?_=1396119501351 and is returning nothing since nothing exists at that URL. Where's all of those numbers and the question mark and whatnot coming from? I just want it to retrieve the file and use it as the datasource. Am I misunderstanding how this works?