I am trying to fetch content from following page with JSOUP:
http://www.exchangeandmart.co.uk/used-cars-for-sale
But it does not fetch the div with id=results , even though it is visible when I open the same link from the browser. Please help me
Java code:
Connection connection = Jsoup.connect("http://www.exchangeandmart.co.uk/used-cars-for-sale");
Document doc = connection.get();
System.out.println(doc.getElementById("results")); // prints null
NOTE: There are no exceptions or errors while downloading the page. Only some of the content in the page is missing. I printed the whole document on console with System.out.println(doc); , it was quite different from the page I view in the browser.
doc.toString()outputs anything? If no, then the problem relays on establishing connection to the server and downloading the data. – SYLARRR Nov 15 '11 at 8:05results. – SYLARRR Nov 15 '11 at 8:19