I need to get the html of a page whose content is generated dynamically via Ajax. * From a different page.
I know I can use Ajax to get the html of a page, but since the content is dynamic it wont be there yet.
$.get( "ajax/test.html", function( data ) {
$( ".result" ).html( data );
alert( "Load was performed." );
});
Any advice/direction is appreciated.