We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

rrpai's avatar
rrpai
Helpful | Level 5
7 years ago

Picker error on Internet Explorer 11 when invoked during page load

- i am loading file picker when a html page loads - on Firefox, Chrome, Microsoft Edge  browsers it works fine - On IE-11 it gives error. error in console > SCRIPT5022: Failed to open/load...
  • Greg-DB's avatar
    7 years ago

    Every browser is implemented differently, so different behaviors may be expected across browsers. (For what it's worth though, I do see the same error here using your code in Chrome on macOS as well.)

    In any case, you should only start the Chooser from a user-triggered event. E.g., call Dropbox.choose when a button is hit; something like:

        $(document).ready(function() {
            $("#button").on('click', function(e) {
                Dropbox.choose(options);
            });
        });

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,877 PostsLatest Activity: 40 minutes ago
325 Following

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!