Help needed.
I have done a lot of R&D to come up with the solution on unblocking the pop-up on the browser but not been able to resolve this issue so I would like to know your valuable thoughts/solutions.
My requirement; 1. When user fills the form and get the successful message, then the new window appears in the same browser with external link.
I have tried the below tricks to solve this.
I have write the below code for new window.
window.open("/","NewWindow",'width=100,height=100');
OR
setTimeout(function() {
window.open("/","NewWindow",'width=100,height=100');
},1000);
OR
open("/","NewWindow",'scrollbars=no,resizable=no,status=no,location=no,toolbar=no,menubar=no,width=100,height=100,left=-1000,top=-1000');
- Also I'm created an anchor and trigger click event, but pop-up is still getting blocked.
Please help.