Button code
<button class="btn btn--full btn__primary btn--md letter2-act" type="submit">Send</button>
When you press the button and completing the form I popup
Code:
<div class="white-popup" id="letter"><a class="popup-close popup-modal-dismiss" href="#"><i class="is-icon is-icon--close"></i></a>
<div class="white-popup-header popup-body text--center">
<h3 class="light">Thank you. Your message has been sent.</h3>
</div>
<div class="white-popup-notice popup-bg grey--body text--center"><span class="light">We carefully review Your message and will contact You.</span></div></div>
How to catch the correct form submission? I used jquery
$(".sign-act").submit(function(){
checked++;
})
But the checked value 0 Oates as standard. A reference to the button $(".sign-act") one hundred percent working, how to intercept?
link - tiffany_Wunsch commented on June 10th 19 at 15:08