I really like this module, works really well with authcache and block cache alter.
As a suggested improvement you could add a check to see if JavaScript is supported, something like:

function ajaxify_regions_preprocess(&$vars, $type) {
  if (!isset($_COOKIE['has_js'])) {
    return;
  }
...

Comments

mikeytown2’s picture

Status: Active » Closed (duplicate)

Alt is the noscript fallback #802698: noscript fallback. Ideally the page gets cached so your proposed logic won't work. Going to mark this as a duplicate since the noscript fallback is a better option IMHO.

chartsandcoffee’s picture

How are you getting this module to work with block cache alter? I'm using it with Boost and it works like a charm with blocks that do not have the block cache turned on. But for cached blocks (e.g, a tagadelic block), it doesn't work. I have cleared all caches too.