Javascript Event System - my-home-after-display-feed
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 displaying a feed on the member home page.
Payload Parameters
- feedUrl
- (string) The URL of the feed that has been parsed and displayed.
- element
- (jQuery) The element containing the list of items.
Execution Interruption
- none
Example
function onAfterDisplayFeed(data) {
// do something here console.log(data.feedUrl, data.element)
} var newEventId = Ka.events.listen('my-home-after-display-feed', onAfterDisplayFeed);
Favorites






