I have an array which I want to display on a badge therefor I have appended as below
           attachmentArray.forEach((element, index) => {
                console.log(index, element.name)
                attachmentBadge.append(`
                     <div id="attachmentBadge_` + index + `" class="badge bg-navy m-1">
                        <div id="file_list_` + index + `" class="d-flex align-items-center justify-space-between">
                            <span id="file_` + index + `">` + element.name + `</span>
                            <span id="closeAttachmentBtn_` + index + `"   value='` + index + `' class="btn btn-sm text-light closeAttachment">
                                ×
                            </span>
                        </div>
                     </div>
                `)
            });
I also have a function to trigger a console.log when i clicking on
<span id="closeAttachmentBtn_` + index + `"   value='` + index + `' class="btn btn-sm text-light closeAttachment"> × </span>
but when i click it isn't working.
        $("div#attachmentBadge.closeAttachment").click(function() {
            console.log('clicked')
        })
what is the correct method to access the function?
