Animate CC HTML5 canvas in Internet Explorer ajax function not working
While my project works fine in Firefox and Chrome, but for some strange reason beyond my expertise my images and text being called by the .ajax function do not show up in IE.
Can anyone help?
$.ajax({
type: 'GET',
dataType: 'json',
success: function (json) {
carouselItems = json;
consol.log(carouselItems);
renderImages();
},
error: function() {
consol.log("error");
}
});
