Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
Quote:
When browser reads the webpage it process javascript updateprogress.
This causes the transfer to be paused for some time.
|
Yep, but Curl won't do that...
Curl is just sending requests and reading answers, it don't integrate a javascript engine, so javascript (which is a client side language, as opposed to server side languages) will not be interpreted.
Your problem is probably that the table is fetched or populated via javascript.
I have only 1 hint for you: ue firefox, install firebug, activate the network tab, and look at the http requests that are done.
If there is an ajax call done to fetch the datas, you will see it.
Otherwise, you will have to find your way through the javascript to find out how the table is altered with this code.
But, reading that there is an element named "txtprogress", and that javascript wait for it to be 100%, there probably is an ajax call be done in the back....
__________________
Only a biker knows why a dog sticks his head out the window.
|