I am trying to open a specific page from my default page. All code on the default page:
<script type="text/javascript">
window.open("StartPage.aspx", "", "fullscreen=yes");
</script>
The problem is that the browser popup blocker blocks this, and I need to allow the browser to open it. I want to avoid this, and that anyone who uses my web application should not allow the pop-up blocker to open the page. I want to pass a popup blocker and open the page without permission.
Is there any way to do this? Thanks
source
share