I\'m trying to fetch some simple text over HTTP from JavaScript:
$(function() { $.get(\"http://mydomain.com/path\", function(result) { console.lo
You can't request that page because of Same Origin Policy unless that page has explicitly allowed you with CORS.
Either proxy it server side, with a service such as YQL, get it as JSONP or get the other service to enable CORS for your domain.