Trying to get json data from a url which generates the bottom 3 numbers of a webpage. My ajax call works in Google chrome but not in internet explorer. After doing research I was told I needed to disable caching with cache: false
which has not solved the problem.
Here is the sourcecode on jsfiddle with a successful ajax call. However my code will does not work on internet explorer.
http://jsfiddle.net/c2VeD/148/
var url = 'http://crudwebappmavenized.ncsu.cloudbees.net/stats'
$.ajax(url, {
type: 'GET',
crossDomain: true,
dataType: 'json',
contentType: 'application/json',
cache: false,
success: function (result)