I've been having this issue for awhile now and haven't found anything to help. I'm trying to load JSON from trackobot.com.
Here's my Jquery:
$.ajax({
type: 'GET',
url: 'https://trackobot.com/profile/history.json?username=still-whelp-8571&token=bybhMPvw6b6Lr77aeX3Z?callback=?',
async: false,
contentType: "application/json",
dataType: 'json',
success: function(data) {
console.log(data);
}
});
I keep getting this:
Refused to execute script from 'https://trackobot.com/profile/history.json?username=still-whelp-8571&token=…Lr77aeX3Z?callback=jQuery2130673694928875193_1432239078433&_=1432239078434' because its MIME type ('application/json') is not executable, and strict MIME type checking is enabled.
Thanks for the help!