<script src="https://static-cdn.kloudless.com/p/platform/sdk/kloudless.explorer.js"></script>
<h1>Welcome to the Kloudless JS File Explorer</h1>
<hr />
<h2>Documentation</h2>
<p>Documentation can be found <a href="https://developers.kloudless.com/docs#ui-tools" target="_blank">here</a>
</p>
<h2>Example</h2>
<button id="explorer-test">Choose a file</button>
<h3>File information</h3>
<div id="file-info"></div>
JavaScript
http://jsfiddle.net/PB565/45/embedded/var explorer = window.Kloudless.explorer({
app_id: 'u7upib0FQ1VePGMvD6FIBvPj3PEKIX0f1BVZDUk9HBAJMxSG',
multiselect: true,
computer: true,
link: true,
direct_link: true,
types: ['pdf']
});
explorer.on('success', function (files) {
console.log('Successfully selected files: ', files);
var fileContainer = document.getElementById('file-info');
// remove all elements
while (fileContainer.lastChild) {
fileContainer.removeChild(fileContainer.lastChild);
}
var fileJSON = document.createElement('pre');
fileJSON.appendChild(document.createTextNode(
JSON.stringify(files, null, 2)));
fileContainer.appendChild(fileJSON);
});
explorer.on('cancel', function () {
console.log('File selection cancelled.');
var fileContainer = document.getElementById('file-info');
// remove all elements
while (fileContainer.lastChild) {
fileContainer.removeChild(fileContainer.lastChild);
}
var result = document.createElement('p');
result.appendChild(document.createTextNode('File selection cancelled!'));
fileContainer.appendChild(result);
});
explorer.choosify(document.getElementById('explorer-test'));
explorer.choose();
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.