In the replaceRegion method (base.js:127), the $region.html() results returns an empty result. Using the unparsed given html in the return works for me.
// empties the region and pastes null
$foundRegion.empty().append($region.html());
// the unparsed html given from the server works fine, also the ajax bindings work fine
$foundRegion.empty().append(html);
I'm not sure this is an issue or an jQuery version difference related problem. The jQuery version i'm currently using is 2.2.4
In the
replaceRegionmethod (base.js:127), the $region.html() results returns an empty result. Using the unparsed given html in the return works for me.I'm not sure this is an issue or an jQuery version difference related problem. The jQuery version i'm currently using is 2.2.4