Javascript Event System - global-login-popup-before-submit

From KickApps Documentation

Jump to: navigation, search

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 a login attempt is made from the login popup.

Payload Parameters

none

Execution Interruption

none

Example

function onLoginPopupSubmit() {
    // do something here
}
var newEventId = Ka.events.listen('login-popup-before-submit', onLoginPopupSubmit);