How to add a line break in file upload type question in google forms

 For file upload type, add the below code in script editor in google forms and run this to add a line break for the question . Please refer the video below to see how to do:



code:


function addLineBreaks()


{

  var form = FormApp.getActiveForm(); 

  

  // find form items you need 

      var questions = form.getItems(FormApp.ItemType.FILE_UPLOAD);

  

  for(i = 0i < questions.lengthi++)

  {

    var title = questions[i].getTitle();

    questions[i].setTitle(title.split(". ").join("\n"));

  }

}

Comments

Post a Comment

Popular posts from this blog

how to add new line in google form questions | Fix for next line issue in google form questions

How to add new line in dropdown type question in google forms