Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to open a debug window within Javascript. Javascript will pass the debug window a JSON string which JSONView (a Chrome extension) should display in a nicely formatted way. For this to work the MIME type must be "application/json". Is it possible to send the mime type and JSON string to window.open as a parameter some how? I think the MIME type and content has to be set on window.open otherwise JSONView won't get triggered.

I did try this, but it did not work:

var x = window.open("about:blank", 'x'); 
var doc = x.document; 
doc.open("application/json"); 
doc.write($(".trend_chart").attr("data-trendChart"))
share|improve this question

2 Answers

up vote 2 down vote accepted

The document that your opening should be of type application/json you cannot send it as a parameter in the window.open method since it's out of context. The browser instead is the one that determines the file type using the request headers.

window.open("http://www.yoursite.com/file.json","mywindow");

You should see the json file within JSONView without problems. If the browser still asks you to download the file, your installation of JSONView is probably broken.

share|improve this answer

It is not possible.

You'd be better off doing:

console.log(JSON.parse($(".trend_chart").attr("data-trendChart")));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.