I have an element that loads from AJAX. With tthat element, I attached Facebox.js. When the element is clicked, it will triggered Facebox. So I used:

$(document).on("click", "a[rel*=modal]", function() {
    $(this).facebox(); // Applies modal window to any link with attribute rel="modal"
});

The thing is, it requires the element to be clicked twice before Facebox is triggered. So as a quick fix, I added:

$('a[rel*=modal]').trigger('click');

This way, I can click the element only once to trigger. Is there a better way to fix ?

有帮助吗?

解决方案

The problem is when the first click happens the facebox plugin is not initialized, a workaround is to initialize the plugin and then re-trigger the click event again

$(document).one("click", "a[rel*=modal]", function() {
    $(this).facebox().triggerHandler('click');
});
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top