I want to link local UNC path (windows network path) from my html. I tried many variations in anchor tag like,
1. <a href="\\\\somemachine\\path">link</a>
2. <a href="file://\\somemachine\\path">link</a>
3. <a href="file://///\\somemachine\\path">link</a>
4. <a href="\\somemachine\path">link</a>
But, nothing seems working. I have chromium nightly build and also tried t on Firefox. Is there is any path combination that can work or if through javascript, it is possible?