Active
Project:
Ajax Blocks
Version:
7.x-1.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
11 Jan 2015 at 23:24 UTC
Updated:
11 Jan 2015 at 23:24 UTC
Thank you for the module. I use it to load a random image in a block.
Recently I tried it with Ajax Regions module and found a problem how to make a callback to trigger Ajax Block in ajax loaded region. And I got it working only when I made it this way:
Drupal.ajax_regions.after = function(link, response) {
jQuery.getScript('/sites/all/modules/ajaxblocks/ajaxblocks.js');
}But I don't think this is the right way, can you advice me the more proper one?