HI, This makes no sense, but for example if i downloaded a file to your /Downloads folder and i wanted to run file:///.../Downloads/myfile1.txt i could just go:
window.location = "file:///.../Downloads/myfile1.txt;
But if i had say 10, or it was generated by a script.. how could i do effectively this.. open ...myfile1.txt => ...myfile1.txt I tried running a jquery .Each() statement with an array of file names.. but it only opens the first one.
window.open();
That would leave me with hundreds of open windows, which i dont want :/
BTW. I'm not doing the file:/// but its not a http:// its local URL Scheme :)
Thanks!!