Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidWells/8872597 to your computer and use it in GitHub Desktop.
Save DavidWells/8872597 to your computer and use it in GitHub Desktop.
Trigger custom javascript on inbound form completion
jQuery(document).ready(function($) {
// Trigger custom script on inbound now form completion
$(".wpl-track-me").on("inbound_form_complete", function() {
// do stuff
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment