react-new-window
react-new-window copied to clipboard
cannot add eventlisteners to the popup window
when i try to add event listener to popup its getting applied on parent window how do i add blur event on popup window
Hi @ZakiMohammad I managed to do that inside the onOpen callBack props
<NewWindow
onOpen={(newWindow) => newWindow.addEventListener('blur', console.log)}
>{children}</NewWindow>