Reputation: 8610
I am new to JavaScript and I would to like to popup a text file on client-side whenever I clicked on a particular button. Is it possible to achieve it in JavaScript?
Upvotes: 0
Views: 645
Reputation: 1279
The security issues might not be your concern, but they are the browser's :). The client's browser won't let you do that because it is a security threat to the client.
Upvotes: 2