Select uploaded images

This example shows how to enable selection of already uploaded images in Redactor. See the documentation for more details.

Code

<!-- element -->
<textarea id="entry">...</textarea>

<!-- call -->
<script>
let app = Redactor('#entry', {
    image: {
        upload: '/image-uploader-path/',
        select: '/images/images.json'
    }
});
</script>