Hello i am using the react js and i am open a new window using this method.
var newWindow = window.open(
this.state.url,
'myWindow',
"location=yes,width=600,height=600"
)
Using this method a new window is open and a redirection url is open and getting the response in new window i just want to close new window pop up after getting response. the redirection link is actually a api link in which i am sending the response.
Help me get out of this. Thanks