How to call trigger with double selector?

jquery, triggers

Solution

You can trigged click event with

$("#start .remove-selected").click();

Problem

How to call trigger function in jQuery for this event, with double selector? ``` $("#start").on("click", '.remove-selected', function () { // ... } ``` Because this is not working `$("#start").trigger("click", '.remove-selected');`

Original source