DOM event handlers not working
-
I’m trying to utilize DOM events that are mentioned on your page here – https://contactform7.com/dom-events/
I used code like this:
function myFormButtonClicked(){ console.log("this works"); myUploadMessage.innerHTML = ""; } let myCf7Form = document.querySelector('.wpcf7-form'); myCf7Form.addEventListener('wpcf7submit', myFormButtonClicked)
Not sure why is this not working, I tried wpcf7submit and wpcf7mailsent and won’t trigger the function. This myUploadMessage should be emptied when form is sent successfully.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘DOM event handlers not working’ is closed to new replies.