This is an annoying problem, and I don\'t suppose that it\'s only IE that has this problem. Basically I have a Node.js server, from which I am making cross-domain calls to g
The following code shows how to handle the GET request (using express) and how to wrap the JSON response using the callback given:
app.get('/foo', function(req, res){
res.header('Content-Type', 'application/json');
res.header('Charset', 'utf-8')
res.send(req.query.callback + '({"something": "rather", "more": "pork", "tua": "tara"});');
});