I have a client that wants me to put a link to a folder on one of their networked servers. They additionally want this link to pull up the windows browser and go directly to the folder. As of IE11 I am able to do this with the following:
<a id="A8" href="file:\\SomeServer\SomeFolder" target="_blank">SomePortal</a>
I should also note that the rest of the site I work at is on IE8, an upgrade to IE11 is eminent but until then I need a solution to my problem. This code does not work on IE8, Chrome, or FireFox the three browsers our clients are approved to use.
I have managed to convince my client to use Chrome for now since I have other HTML5 elements that IE8 will not support. So my question is this, is there some way to get Chrome to open this link in a windows browser? If not, can I get it to open in a new Chrome tab? If neither of these are options is possible, what is a good solution for making this compatible for another of the mentioned browsers?