The code works for me, and I didn't actually say it was perfect.
Doing this sort of things can be affected by a whole lot of things.
One of the main things being connection speeds but there's plenty of others.
Not all of them are on the 'client' side either.
This page is linking back to a server where all the data is stored.
One of the first thing's it does as far as I can tell is send a request to that server to retrieve that data - that's why you get the Please waiting.... message.
It's quite hard to deal with these sort of things to write code that will work every time for everybody.
What I've posted is the basics if you like of the code you would need to do this sort of thing.
Obviously it can be improved, refined and if anybody has any ideas how to do that I'd be happy to hear them.
I actually thought I'd dealt with the 'waiting' problem using techniques I've used elsewhere for similar pages but looks like I didn't.
I've got a few other ideas but I've still not had an answer to the one of the original question to the OP - does that page have all the data.
Also if you are getting errors please say what they are, like UHSoccer(thank you) has.
I'll go away and see if I can work out a fix but it might not be too pretty.
clinton holder
If what you want to do involves logging in with a username/password etc then I'm afraid I can't really help.
Don't think it's quite right to post code for that sort of thing.
Anyway, if you look at the code I posted one of the first things it does is create a reference to the document in IE.
That's basically the entire page, so in theory if you've got that you've got access to everything on the page.
Actually extracting data/whatever from it is a different matter, I'm pretty sure you don't want the entire page.
If you did all you would need would be the innerHTML or innerText property of the document.
You'd need to parse the HTML or Text to get data.