[jQuery] IE Problem
[jQuery] IE Problem
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();
});
});