Javascript Event System - register-user-page-coppa-cookie-found
From KickApps Documentation
This article pertains to the Javascript Event System. You can refer to our list of Javascript Event System Supported Events to learn what else you can do with our event system.
Contents |
Summary
- This event is fired when the member registration form is submitted, but a COPPA cookie has been found.
Payload Parameters
- none
Execution Interruption
- If your event handler returns false, the execution will halt and the default message will not be displayed to the user. You should override this behavior by displaying a custom message alerting the user of the issue.
Example
function onCoppaCookieFound() {
// do something here
} var newEventId = Ka.events.listen('register-user-page-coppa-cookie-found', onCoppaCookieFound);
Favorites






