-1

How can I get an "open file dialogue" box in JavaScript?

Bhargav Rao
  • 41,091
  • 27
  • 112
  • 129
Kishh
  • 1,679
  • 4
  • 17
  • 16

2 Answers2

3

Javascript cannot open files. (Leastways not in any cross browser secure way).

Possibly you'd be interested in <input type="file" /> (an intro here).

annakata
  • 70,224
  • 16
  • 111
  • 179
0

Short answer is that no, you cannot do this through pure Javascript; the only way to do this is via an HTML form with an <input type="file"> element.

peterh
  • 9,698
  • 15
  • 68
  • 87
Andrzej Doyle
  • 97,637
  • 30
  • 185
  • 225