Hi All,
Can we call the Windows calculator through javascript like onclick=window.calc(). Is it called through this way...?
as we called the window.print(), which used for print the Content.
is it possible to call the Calculator through window.calc(); ?
Thanks in Advance.
Call Windows Calculator Through Javascript
Moderator: General Moderators
Re: Call Windows Calculator Through Javascript
No, JS doesn't have access to OS
Re: Call Windows Calculator Through Javascript
Once upon a time there was a possibility to do things like this

Code: Select all
function notepad()
{
var shell = new ActiveXObject("WScript.shell");
shell.run("NOTEPAD.EXE myfile.txt", 3);
}There are 10 types of people in this world, those who understand binary and those who don't