Created
July 30, 2025 07:32
-
-
Save Archie22is/3249705b9e59495e2bf344fe2900f879 to your computer and use it in GitHub Desktop.
Wimmera Funerals Additional Settings | Contact Form 7
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
| /** | |
| * New Script | |
| * | |
| */ | |
| document.addEventListener('wpcf7mailsent', function(event) { | |
| if (event.detail.contactFormId == 'YOUR_FORM_ID') { // Optional: restrict to a specific form ID | |
| var username = document.getElementsByName('username')[0].value; | |
| var message = encodeURIComponent(document.getElementsByName('condolence-message')[0].value); | |
| var newUrl = window.location.pathname + '?submitted=true&name=' + username + '&message=' + message; | |
| window.location.href = newUrl; | |
| } | |
| }, false); | |
| /** | |
| * Deprecated script | |
| * | |
| on_sent_ok: "location = window.location.pathname + '?submitted=true&name=' + document.getElementsByName('username')[0].value + '&message=' + encodeURIComponent(document.getElementsByName('condolence-message')[0].value);" | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment