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 want to be able to set the MIME type of a JavaScript file so that when the file is opened in an internet browser, it is automatically executed. How would I go about doing this?

Thank you in advance for your help

share|improve this question

1 Answer

You can't. If you open a JavaScript in a web browser, it won't be automatically executed - even if served from a web server with the correct content-type.

Browsers only execute JS if it is linked to an HTML document (or browser plugin, etc, etc).

For a JS file to just be executed by itself, you need to use something designed to execute scripts directly (such as Windows Scripting Host).

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.