// Allow other scripts to respond to this event.
$(document).trigger('drupalOverlayOpen');
我在Drupal核心中看到了这一点。这在views infinite scroll
模块中有params:
$(document).trigger('infiniteScrollComplete', [$new_view, $existing_content]);
我怎样才能完全响应Drupal中的这个事件?假设我想在这个事件发生时在DOM上做点什么..
答案 0 :(得分:0)
这些是自定义事件。您可以使用以下自定义事件绑定您的函数:
$(document).bind('drupalOverlayOpen', function(){
// Do your stuff here.
});