tags:

views:

77

answers:

2

Can we access the hardware service routine using JavaScript?

+6  A: 

With the JavaScript inside your browser, No.

However JavaScript can also be used on the server-side, as they guys at Node.js are doing (just to take one example). In this case, you would have access to server-side resources and I/O, using JavaScript as a scripting language.

Daniel Vassallo
+1  A: 

one more important thing : Javascript access to the browser is limited

I dont think so its possible via javascript because according to me its client side scripting language. But i thin with serverside scripting you can access hardware of server machine(not sure with this)

read more about this : http://www.webdeveloper.com/forum/showthread.php?t=137449

Pranay Rana