Google Apps Script - Run javascript as the form is filled in by users

I am new to google script apps and need help. I am trying to achieve the following -

Set a trigger for lost focus textbox on google form. The code in this case will be A. Get the value of the textbox B. Set the value of the textbox

+3


source to share


1 answer


Unfortunately, this is currently not possible with Google Apps Script and Google Forms. Script applications can be invoked by a form submission, but cannot interact with the form in the user's browser.



It is possible to fully render a form in Script applications (using HTML), which allows you to have complete control over the user interface, but you lose access to the functionality provided by Google Forms.

+3


source







All Articles