JSFiddle - React, Tailwind, and code Playground
by Shirly Manor
HTML
<script src="https://media-library.cloudinary.com/global/all.js"></script>
<script>
const mloptions = {
cloud_name: "shirly",
api_key: "186357422989241",
username: "[email protected]",
}
function insertHandler(data){
data.assets.forEach(asset => { console.log("Inserted asset:",
JSON.stringify(asset, null, 2))})
}
window.ml = cloudinary.createMediaLibrary(mloptions, {insertHandler: insertHandler});
window.ml.show({folder: {path: "test", resource_type: "image"}});
</script>