Edit in JSFiddle

/*
 *    Welcome to the Kloudless JS File Explorer!
 *
 *    To view the explorer in action click 'Result'!
 */

// File Explorer with jQuery
// For a version without jQuery, and with all options and event handlers, see here: http://jsfiddle.net/pseudonumos/ax4wuxkp/

var explorer = window.Kloudless.explorer({
    app_id: 'iCZ_ICMy43H0NSoz0QbLvmyjzCHf2frAOPaBfWVgh9_vrFIM',
    multiselect: true,
    computer: true,
});

explorer.on('success', function(files) {
    $("#file-info > pre").replaceWith('<pre>' + JSON.stringify(files, null, 2) + '</pre>');
});

explorer.choosify($('#chooser'));

var files = [{
    url: "https://s3-us-west-2.amazonaws.com/static-assets.kloudless.com/static/logo_white.png",
    name: "kloudless-logo.png"
}];

explorer.savify($("#saver"), files);
<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>
<p>For a version without jQuery, and with all options and event handlers, see
    <a href="http://jsfiddle.net/pseudonumos/ax4wuxkp/embedded/" target="_blank">here</a>
</p>

<h2>Example</h2>

<button id="chooser">Choose a file</button>

<button id="saver">Save a file</button>

<h3>File information</h3>

<div id="file-info"><pre></pre></div>

              

External resources loaded into this fiddle: