How to add new line in google form confirmation message
Confirmation messages are displayed after submitting the form / questions by the receiver. To add new line in the confirmation message, run the below script in the script editor.
function addLineBreaks()
{
var form = FormApp.getActiveForm();
var title = "Thanks for your submission. We will get back to you sooon";
form.setConfirmationMessage( title.split(". ").join("\n"));
}
For reference :
Comments
Post a Comment