Was trying to bind some events to Contact Form 7 for Wordpress, but the event was never called. ref (Contact Form 7 AJAX Callback)
Here's my binding:
$('.wpcf7').on('invalid.wpcf7 spam.wpcf7 mailsent.wpcf7 mailfailed.wpcf7 submit.wpcf7'), function () {
sb[9].tinyscrollbar_update('relative');
console.log('invalid');
}
The console.log
was never called. I'm binding all the events for testing or am I binding it wrong?