It looks like people have had issues with Accept headers in the past, but I\'m not sure my issue is related. Using jQuery 1.4.2, I\'m having trouble getting JSON with
This is not a bug.
Since your call is cross-domain, your browser will not allow you to make XHR calls (same-origin policy). Internally, jQuery is working around this using the " tag hack", to make the cross-domain call (this is the fundemental idea behind the JSONP data type). Since the call is made using the tag, it is simply not possible for jQuery to modify the accepts portion of the header.
jQuery works its magic by hiding these details from you, but unfortunately in this case you seem to be subject to the Law of Leaky Abstractions.