$w.onReady(() => { $w("#logoutButton").onClick(logoutAndRedirect); }); function logoutAndRedirect(event) { Promise.all( [ wixLocation.to('/'), wixUsers.logout() ] ); }