I am developing a web crawler to get some job ads from www.seek.com.au. When I search for something say "ios", the request url will be "http://www.seek.com.au/jobs/in-australia/#dateRange=999&workType=0&industry=&occupation=&graduateSearch=false&salaryFrom=0&salaryTo=999999&salaryType=annual&advertiserID=&advertiserGroup=&keywords=ios&page=1&isAreaUnspecified=false&location=&area=&nation=3000&sortMode=KeywordRelevance&searchFrom=quick&searchType="
If it is in a browser, you will see all the ios related jobs. However, there is actually no job info found there at all in the http response. So I guess the data is fetched in an ajax way. But surprisingly, there is no such kind of ajax request/response I could possibly find after carefully going through the info provided by browser monitoring tool.
So my question is, how is the job related data loaded? Where do they come from? If it is a ajax request, what is the url? What does the response look like?