0

thanks for helping a beginner on this one. Have a piece of code sitting in home-js.html (shown below) which is called at the base of a home.html code. Am performing some checks which if valid I want the user to be sent to the next page (mTeam.html) in my process (also coded within the same overall google script file set). Clearly the below isn't working - all advice gratefully received. Thanks!

   if(allValid){
         
         return HtmlService.createHtmlOutputFromFile("mTeam").getContent();
  }
sawalk
  • 1

1 Answers1

1

On your javascript file that is sourced in your current html page, use this

document.location.href = "mTeam.Html";