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');
You can trigged click event with
$("#start .remove-selected").click();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With