To open a popup window with a given url I use:
$("#OpenFolder").click(function () {
var url = "https://stackoverflow.com";
windowObjectReference = window.open(url, "ModulesList", "popup");
})
and
<button id="OpenFolder">OpenFolder</button>
Now I would like to open a folder located on the computer (where my script is) to have the possibility to select a file. What should be url (the path is something like /home/...) ? Thanks