I'd suggest downloading and installing "Fiddler" (http:// www.fiddlertool.com) and seeing what the client side request looks like
On Jan 5, 7:22 pm, jhm <jmay...@gmail.com> wrote: > The following code works in Firefox and Opera, but does nothing in IE. > The problem is the loading of the json file. Am I missing something? > > $(document).ready(function() { > alert('two'); > $.getJSON('./files/v-winter.json', function(data){ > alert('three'); > $('tbody.schedule').empty(); > }); > > });