Open link in another browser in HTML

0

Good morning everyone!

Next, I have a very simple HTML code, where I have an image linked to a link of a local application in the company (the application is web) or when I click on the image the page automatically redirects me the application page However, this application can only be opened in chrome, and some users of the company have the explorer as default browser, can I make this link linked to the image to open a page in chrome?

Below is the current code line (where XX.XXX.X.X is the IP of the web application):

<article class="thumb">
<a href="http://XX.XXX.X.X/GEOQ" ><target=”_blank”><class="image"><img src="images/thumbs/01.jpg" alt="" height="150" width="225" /></a>
<h2>GEOQ</h2>
<p>Sistema de não conformidades.</p>
</article>
    
asked by anonymous 01.02.2018 / 15:17

1 answer

3

For security it is no longer possible for a browser to access other applications within your operating system. Unless the purpose is to get some files or access reading devices, the browser can not run programs.

You can leave a warning on the page as to which browser can access the application, but the right thing to do is try to investigate why an application only runs in Google Chrome.

    
01.02.2018 / 15:21