We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
IceManLoneWolf
5 years agoExplorer | Level 3
Triggering the Embedder using JavaScript
var options = {
// Shared link to Dropbox file
link: "https://www.dropbox.com/sh/keptcjl08q3wsid/AACui966iXcXPbagCJ2py2L-a?dl=0",
file: {
// Sets the zoom mode for embedded ...
- 5 years ago
Thanks! Yes, you'll also need to define "element" which will depend on your page, but should be the element on your page where you want to put the Embedder.
For example, if you have an element on your page like this:
<div id="folder_container"></div>
Then you might define 'element' like this:
var element = document.getElementById("folder_container");
Greg-DB
Dropbox Staff
What error, if any, do you get in the JavaScript Console when you try this?
From what I can see, it looks like it may just be a syntax error. You're missing a comma here:
// view: "list" // or "grid"
It should be:
view: "list", // or "grid"
IceManLoneWolf
5 years agoExplorer | Level 3
Thanks for responding. I get the following error in console.
Uncaught ReferenceError: element is not defined
- Greg-DB5 years agoDropbox Staff
Thanks! Yes, you'll also need to define "element" which will depend on your page, but should be the element on your page where you want to put the Embedder.
For example, if you have an element on your page like this:
<div id="folder_container"></div>
Then you might define 'element' like this:
var element = document.getElementById("folder_container");
- IceManLoneWolf5 years agoExplorer | Level 3
Thanks. That did the trick.
- Bryantsssss3 years agoExplorer | Level 4
Do you have an example of the full code? I am still having the same issue.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 3 hours agoIf 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!