[jQuery] Re: jquery too long to load
Well, it is kind of slow...
I'm here on vacation so I don't have the tools (firefox plug-ins) to
analyze the situation... first, install the HttpFox plug-in and then,
look what HTTP requests are made, at what time, in what order, how
long they take to be answered .... if you want your page to seem
responsive, the big header image should get displayed as soon as
possible (also, try to reduce its size as much as possible)
also, time the JS code...
var time1 = new Date().getTime();
// all the JS code that gets executed on page load
var time2 = new Date().getTime();
alert(time2 - time1);
the number should, of course, be as low as possible...
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home