@yariplus said:
Adding a one on the next start event should work I think.
</script> $(window).on('action:ajaxify.contentLoaded', function(){ if (ajaxify.data && ajaxify.data.cid){ $('body').addClass('categoryid_'+ajaxify.data.cid); $(window).one('action:ajaxify.start', function(){ $('body').removeClass('categoryid-'+ajaxify.data.cid); }); } }); </script>
Testing shows that works too - but is there any way the removeClass() could fail to get called even though the body retains the class? (e.g. a refresh doesn't count as not calling it, because the classes would get reset anyway.)