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.

is it possible to access native windows api from javascript? More exactly I want to use UDP sockets from javascript. I know this is possible in Internet Explorer by using ActiveX, but I want to have the same thing for other browsers also.

share|improve this question

1 Answer

up vote 2 down vote accepted

Nope, this isn't possible. It's outside JavaScript's scope. JavaScript is meant to run in the browser's sandbox for security reasons, and access to outside resources is strictly limited.

ActiveX controls are able to do this; maybe also Java Applets, although I don't know for sure.

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.