Skip to content

Instantly share code, notes, and snippets.

@scottwater
Created April 15, 2019 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottwater/704929908e48bb3cbd14b000827a2ee5 to your computer and use it in GitHub Desktop.
Save scottwater/704929908e48bb3cbd14b000827a2ee5 to your computer and use it in GitHub Desktop.
AnyForm Custom Callback
<script>
var kol_widget_options = {
callback: function(data) {
if (data.counter == 1) {
window.location = `https://YOURSITE.com?kid=${data.social_id}`;
} else {
window.location = data.redirect_url;
}
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment