I have a quick question to ask. Right now I have:
$('#thisPageDiv').load(url + ' #otherPageDiv');
The AJAX request fires and #otherPageDiv
is successfully rendered in #thisPageDiv
. However, because my other page uses AngularJS, the retrieved result is barebones and practically useless. Is there any way I can ensure that the retrieved data is fully rendered? I wouldn't mind if it's hacky (such as rendering the whole page in the beginning, and then only retrieving the important portion after the full load).