Javascript Event System - play-page-after-add-tag-success
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 after a tag has been added.
Payload Parameters
- currentTags
- (Array) All tags associated with this media item.
Execution Interruption
- If your event handler returns false, the execution will halt and the tag will not be added.
Example
function onAfterAddTagSuccess(data) {
// do something here console.log(data.currentTags)
} var newEventId = Ka.events.listen('play-page-after-add-tag-success', onAfterAddTagSuccess);
Favorites






