element.find('div.fc-title').append("<span id='eventTimes'><i class='fas fa-times'/></span>");
element.find("#eventTimes").click(function () {
deleteBookingById(event._id);
$('.tooltip').remove();
});
функция deleteBookingById (id) {
if (confirm('Do you want to remove this booking?')) {
// ToDo: C# delete part
$('#calendar').fullCalendar('removeEvents', id);
setNormalBehavior();
}
}