views:

393

answers:

3

http://shanamccormick.com

The page loads all the images and then says "(1 item remaining) Waiting on http:// shanamccormick com..." How can i see what it is waiting to load here?? and why does it take sooo long?

The index.html file uses a couple small internal JS and one external JS located within my website (jquery.min) The size of the external JS file is 54kb.

+2  A: 

You can get profiling tools to help answer this question. Firebug, for instance, has a cool "Net" tab showing the back-and-forth requests and responses, but I'm sure other tools do similar things.

T.J. Crowder
Firebug is awesome but it doesn't work in IE. He will need to find a different profiler..
Miky Dinescu
Er, um, he *did* mention IE7 in the title, didn't he? Cheers Miky. There's Firebug Lite for IE, but Cheeso's link is likely to be more useful.
T.J. Crowder
+3  A: 
Cheeso
+1 for Fiddler - I reckon that's the best tool for the problem as described.
NickFitz
+2  A: 

I have a few solutions that might help. I learned of these from another question I asked earlier:

  • Firebug Lite is a JavaScript file you can insert into your pages to simulate some Firebug features in browsers that are not named "Firefox". Firebug Lite creates the variable "firebug" and doesn't affect or interfere with HTML elements that aren't created by itself.

  • WebWait is a website timer. Use WebWait to benchmark your website or test the speed of your web connection. Timing is accurate because WebWait pulls down the entire website into your browser, so it takes into account Ajax/Javascript processing and image loading which other tools ignore.

  • Also, the IE JavaScript Real Performance Tester can test your scripts.

Hope these help!

T Pops