Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chris-castillo-dev/42616fddd5eb41c47fc5aa529b33b981 to your computer and use it in GitHub Desktop.
Save chris-castillo-dev/42616fddd5eb41c47fc5aa529b33b981 to your computer and use it in GitHub Desktop.
$form.on('fluentform_submission_success', function() {
// You can run your own JS and will be run on successful form submission
var s = document.createElement('script');
var code = 'clarity("set", "conversionAction", "New Lead")';
try{
s.appendChild(document.createTextNode(code));
document.body.appendChild(s);
} catch(e){
s.text = code;
document.body.appendChild(s);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment