Created
October 14, 2024 17:04
-
-
Save mkdizajn/1b5f28c95a22481e9b50ac3c16a72f41 to your computer and use it in GitHub Desktop.
google forms submit form redirect to new thankyou page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript">var submitted=false;</script> | |
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;" | |
onload="if(submitted) {window.location='whateveryourredirectis.html';}"></iframe> | |
<form action="YOUR-EMBEDDED-GOOGLE-SPREADSHEET-LINK" method="post" target="hidden_iframe" | |
onsubmit="submitted=true;"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment