Home > Back-end >  "Do you want want to allow this website to open an app on your computer" pop up in interne
"Do you want want to allow this website to open an app on your computer" pop up in interne

Time:04-11

I don't know why is this pop-up occuring when i trying to open a JSP url using windows.open(url) in javascript.

Can anyone give an idea how to prevent this.

CodePudding user response:

Its just for security reasons so that a website does not do this:

window.open("https://bad_website.com")

As far as i know, you cant prevent it, because of security reasons

  • Related