MOCKSTACKS
EN
Questions And Answers

More Tutorials




Open File Dialog in Javascript


How to open a file dialog with javascript

<!DOCTYPE html>
<html>
    <head>
        <title>Whatever you Want your title to be</title>
    </head>
    <body>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js">
            var selectDialogueLink = $('<a href="">Select Files</a>');
            var fileSelector = $('<input type="file">');
          
            selectDialogueLink.click(function(){
                fileSelector.click();
                return false;
            });
            $('body').html(selectDialogue);
            // This change to the fileSelector variable will make multiple selects true
            fileSelector = $('<input type="file" multiple=""');
        </script>
    </body>
</html>

Example using standard JavaScript and a normal link

var fileSelector = document.createElement('input');
fileSelector.setAttribute('type', 'file');

var selectDialogueLink = document.createElement('a');
selectDialogueLink.setAttribute('href', '');
selectDialogueLink.innerText = "Select File";

selectDialogueLink.onclick = function () {
     fileSelector.click();
     return false;
}

document.body.appendChild(selectDialogueLink);


Conclusion

In this page (written and validated by ) you learned about . What's Next? If you are interested in completing Javascript tutorial, we encourage you simply to start here: Javascript Tutorial.



Incorrect info or code snippet? We take very seriously the accuracy of the information provided on our website. We also make sure to test all snippets and examples provided for each section. If you find any incorrect information, please send us an email about the issue: mockstacks@gmail.com.


Share On:


Mockstacks was launched to help beginners learn programming languages; the site is optimized with no Ads as, Ads might slow down the performance. We also don't track any personal information; we also don't collect any kind of data unless the user provided us a corrected information. Almost all examples have been tested. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. By using Mockstacks.com, you agree to have read and accepted our terms of use, cookies and privacy policy.