I need to parse a data a website that using jQuery to Generate a table from their database, and they don't want to provide the data to any other way (plain html, xml etc) for me. On my previous experience, I easily can parse the data from html file directly because the data is inside the html file it self, but on this case the table is seem to be generated in browser memory and if I try to parse from the html, the only thing I get is the javascript(jquery) itself and there is no < TABLE> < TD> or < TR> tag insides.
The question is, is there a way get those Table in plain HTML? (i'm expecting the solution is in android/Java but other language/platform are welcome too)
EDIT: For those who want to see the example of the data, I can't give the real data but following example is the exact example of the data I need to parse :
http://datatables.net/examples/data_sources/server_side.html
There is the table but if you open the source of the HTML, you cannot find the data, somehow it is generated inside the memory of the browser after the html is loaded and then take it from server
As requested by Saranya Sadhasivam, below is Example data output
aaData: [[916, LATE, 14:38, SUCCESS, null], [532, EARLY, 14:42, SUCCESS, null],…]
iTotalDisplayRecords: 15
iTotalRecords: 15
oa00f43afb3246649816c727d67db0df9476346d5:"QBUSRAQOQQEWVw8SWlIEURZNRVwMTkEUSBUQCxAGXB9EV04SQVsYSF9AChBaUxFbH3NhK0oDBVQDXgZWWgUGOjljNWY0NGVj"
sEcho: 1
BOUNTY TERMS and CONDITION :
The first person that can parse table data from following link without accessing the server side data:
http://datatables.net/examples/data_sources/server_side.html
In Android Only