How to run a function from HTML file in Google Apps Script.

Thilak
Mar 10, 2022
Google Apps Script
  1. Add a calling function in code.gs file.

2. Add call the function within script tag in Index.html file.

google.script.run.doSomething();

--

--