I have a button. I want to run a shell script when i click that button.
My HTML code is given below:
Expand|Select|Wrap|Line Numbers
- <html>
- <head>
- </head>
- <body>
- <input type = "button" value = "run script" onclick = "some javascript func to run script()">
- </body>
- </html>