My application posts a form using Ajax successfully. The response, however, contains links that are appended to the DOM. Those links are never processed and they are therefore all failing.
I have validated that the injectAttributes variable is set to true.
`
var injectForms = true;
var injectGetForms = true;
var injectFormAttributes = true;
var injectAttributes = true;`
Sorry if I am missing something obvious here, but is this a supported feature? I can't find any documentation indicating how to manually post-process content we get using ajax.
Thanks in advance for any clues as to how to get this use case to work.