Tag: Google Spreadsheet

  • Customize Google Spreadsheet Forms – simplified

    I stripped down GOS’s excellent how-to on using javascript to display a custom message instead of sending users to the unfriendly-looking Google Spreadsheet Forms confirmation page. The simplified code follows: function custommsg() { document.getElementById(“form-message”).style.display=””; document.getElementById(“form-message”).innerHTML=”THANK YOU MESSAGE HERE”; } PASTE YOUR FORM CODE HERE