It took me a while to trace down where the error was coming from but the jQuery get fails (writes 'hmm') with this script. I'm using jQuery 2.1.4
Object.prototype.funkyThing = function () {
}
$.get('testing/plotData.txt', function (data) {
console.log(data);
})
.error(function (jqXHR, textStatus, errorThrown) {
console.log('hmm');
});
Yes I know that "funkyThing" doesn't do anything. Just adding this to the Object prototype causes the get to fail with "SYNTAXERROR"