-
Hello, is the modal option available in fancybox 4 ? In fancybox 3, I could set Then I used the event
and my callback was simply following the link It does not seem possible to achieve this with fancybox 4. Regards |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi, You can archive the same functionality using Fancybox.bind('[data-fancybox="trigger-modal"]', {
closeButton: false,
dragToClose: false,
click: false,
on: {
shouldClose: function (fancybox, event) {
const value =
event && event.target ? parseInt(event.target.dataset.value, 10) : 0;
console.log(`value: ${value}`);
if (value !== 1) {
return false;
}
},
},
}); Demo - https://fancyapps.com/playground/1W2 |
Beta Was this translation helpful? Give feedback.
-
In a similar vein, with Fancybox 5, it appears this is the best group of options to simulate the old
Is this correct or is there more to consider? I've tested it and it seems to work well. I have a button that triggers a |
Beta Was this translation helpful? Give feedback.
Hi,
You can archive the same functionality using
shouldClose
event, just make sure you are using the latest version.Demo - https://fancyapps.com/playground/1W2
(Note: That demo will work fine after CDN will update to the latest)