
nklyo (nklyo) asked a question.
Using Okta Sign In Widget and Microsoft Link Button
I have configured the sign-in widget to display the Microsoft link sign button but when the button is clicked a pop-up happens. I don't want the pop-up I want it to stay on the same page.

Have you looked at the authParams.display option? It defaults to popup but can be changed to page. See this: https://github.com/okta/okta-signin-widget
From that github link:
authParams.display: Specify how to display the authentication UI for External Identity Providers. Defaults to popup
// Redirects to authorization server when the IDP button is clicked, and
// returns an access_token in the url hash (Implicit flow)
authParams: {
display: 'page',
responseType: 'token',
pkce: false
}