I am trying to scrape data from a website that fetches that data using ajax. similar to google tasks..
How can I do this?
Please gimme some hint, its urgent.
I am trying to scrape data from a website that fetches that data using ajax. similar to google tasks..
How can I do this?
Please gimme some hint, its urgent.
Since ajax uses javascript to make an http call to a standard web page, you can look at the source code to find the URL being used. If you do not have a sufficient knowledge of javascript, you may have to stumble through, since that URL may be formed dynamically. Also, if you do manage to get the URL, you may get the data in JSON notation or and have to transform the data into another format you can manage.