Javascript Event System - profile-page-before-display-comment-form
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 before the comment form is displayed
Payload Parameters
- none
Execution Interruption
- If your event handler returns false, the execution will halt and the comment form will not be shown
Example
function onBeforeDisplayCommentForm() {
// do something here
} var newEventId = Ka.events.listen('profile-page-before-display-comment-form', onBeforeDisplayCommentForm);
Favorites






