I want to run a system command thru a web application on client side.
so How can I execute a command in javascript to make this work?
Tried using ActiveXObject but its not working, plus it only supports internet explorer. I want something which can run cross browser and execute windows command.
var shell = new ActiveXObject("WScript.Shell"); shell.run("javac a.java");