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";
}
Leave a Reply