Using AJAX I am trying to get some data from a site (a currency site).
When the site initially loads it just contains the vanilla page source, but (I think) that after a second or so, all that seems to get processed and additional data is added (currency values etc).
The problem is that when I use AJAX it only returns to data Ajax.Last data of the source code that was present on the initial request. So there are no values to extract, just a bunch of useless <spans> and <divs>.
I want to extract data that I can see in the 'Inspect Element' window and not the 'View Source'.
Is there any way to somehow do an Ajax request which delays its return values until the site has done some processing.
Or some other idea?