Я создаю приятное предупреждение из jquery при возникновении ошибки. И код sweetalert2 для этого выглядит следующим образом:
Swal.fire({
title: 'Sorry!',
text: "We couldn't find what you are looking. Let us know, so that we could add the feature in near future. ",
type: 'error',
showCancelButton: true,
confirmButtonText: 'Ok!',
confirmButtonColor: "#21b9bb",
cancelButtonText: 'Let it Go!',
reverseButtons: true
}).then((result) => {
if (result.value) {
window.open(
base_path+'/contact/request-feature',
'_blank'
);
} else if (
// Read more about handling dismissals
result.dismiss === Swal.DismissReason.cancel
) {
Swal.fire(
'Find Another Rink',
'Please, try with different search parameter.'
)
}
})
Но даже после нажатия любой из упомянутых здесь кнопок фон все еще остается там, что можно увидеть, осмотрев элемент следующим образом:
Из-за этого календарь становится неприкосновенным.
Как я могу избавиться от этого, чтобы я мог щелкнуть по элементу div, который покрыт этим элементом.