NodeJS won't return data to jQuery.getJSON
问题 I've set up NodeJS and it's returning data when I browse to the URL: http://184.106.206.235 However, when I try to call that URL using $.getJSON , the callback shows null for the data variable and "success" for the textStatus variable. I imagine this could be a cross-domain thing, but I'm surprised that the textStatus says "success" if that's the case. In case it's helpful, here's the server-side JS: http.createServer(function(req, res){ var output = {message: "Hello World!"}; var body = JSON