jsonpをつかって異なるドメインにjsonなげて保存した javascript

クロスドメイン問題は jsonpで解決した
javascript で指定する受信側の phpファイル内に
header( Content-Type: application/javascript );
を記載した

なげるjquery側では
$.getJSON( http://xxx/xxx_save.php?callback=?
{
json: r_json
}
);
とした
この2点のみだった

Refused to execute script from because its MIME type ( text/html ) is not executable and strict MIME type checking is enabled.
Uncaught SyntaxError: Unexpected token : for a cross domain json ...