Skip to content

Instantly share code, notes, and snippets.

@tobeyadr
Last active March 8, 2024 22:15
Show Gist options
  • Save tobeyadr/a9b52d95372dd2f5ac28e09c02a4091c to your computer and use it in GitHub Desktop.
Save tobeyadr/a9b52d95372dd2f5ac28e09c02a4091c to your computer and use it in GitHub Desktop.
JS to listen for when the details form is submitted in the calendar.
<?php
add_action( 'enqueue_groundhogg_calendar_scripts', function (){
// language=javascript
$script = 'document.addEventListener("submit", function(event) {
// Check if the submitted element is a form with the specific class name
if (event.target.matches("form.details-form")) {
// Do GA stuff
}
});';
wp_add_inline_script( 'groundhogg-appointments-frontend', $script );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment