Created
April 27, 2020 04:52
-
-
Save dilverdev/3b32ecc5f9405dd16b28e958835e6dd1 to your computer and use it in GitHub Desktop.
Events Contact Form 7
This file contains 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
document.addEventListener('wpcf7invalid', function (event) { | |
console.log('wpcf7invalid') | |
}, false); | |
document.addEventListener('wpcf7spam', function (event) { | |
console.log('wpcf7spam') | |
}, false); | |
document.addEventListener('wpcf7mailsent', function (event) { | |
console.log('wpcf7mailsent') | |
}, false); | |
document.addEventListener('wpcf7submit', function (event) { | |
console.log('wpcf7submit') | |
}, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment