I went to whateverorigin.com to generate this line of javascript:
$.getJSON('http://whateverorigin.org/get?url=' +
encodeURIComponent('http://google.com') +
'&callback=?', function(data){ alert(data.contents); });
I put that in place of the XMLHttpRequest
I was using before, and nothing happens. Chrome says I have an Uncaught Reference Error: jQuery110201568311753217131_1395117728011
is not defined. I must not be setting everything up right, what else do I need to do besides put that line with the relevant url in my JavaScript?