Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I created webpage which has JavaScript in single file but the size is very high. When I run the page, the loading time of JavaScript is very high in Chrome. FYI: The script file created from excel tool which has lot of hidden fields and scripts but everything needed to make application worked.

Have you anyone gone through same thing and what is the solution we can make for this? Thanks in Advance.

share|improve this question
Specs? or can you give us an idea of HOW MUCH js you have? What it does, is it AJAX heavy? (maybe slow async calls to the backend, etc). Otherwise this is a question without any real answer, more of a guessing game. – Jakub Feb 2 '12 at 13:47

6 Answers

There are a couple of things you could do:
- minify your scripts (e.g. with Google closure compiler)
- combine your scripts (reduces the number of requests)
- turn on gzip compression
- load your scripts at the end of your body tag
- use a CDN, prevents loading your scripts all from the same location (most browsers will only load 2 files simultaneously from the same location)

Have a look at the YSlow plugin and Google PageSpeed, both very useful in improving performance.

share|improve this answer
Its already in a single line but the file size is high. Any idea? I will try that turn on gzip compression.Thanks – Palani Feb 2 '12 at 13:44
Are you using a lot of javascript frameworks? Do you really need them all? If you have written a lot of code yourself, try to reduce the length of the function names/definitions, keep them clear but short. – Zyphrax Feb 6 '12 at 11:33
i have updated the question with some more inputs. – Palani Feb 13 '12 at 12:54

Run it through a script which combines and minifies it. There are plugins for most build systems now that do that. That's how we compress about 1.5mb of JavaScript into about 500kb during our build process.

share|improve this answer
Its already in a single line but the file size is high. Any idea? – Palani Feb 2 '12 at 13:45
i have updated the question with some more inputs. – Palani Feb 13 '12 at 12:54

Combine your scripts into as few files as possible, and minify them. Also load the scripts at the end of your page.

share|improve this answer
Its already in a single line but the file size is high. Any idea? – Palani Feb 2 '12 at 13:42
if possible, you could separate the single file to 2 or 3 files. Chrome and other browsers can download these files parallely. but don't create too many files, parallel downloading has limit count. – fengd Feb 2 '12 at 14:37
also gzip script files. – fengd Feb 2 '12 at 14:38

There is no 'generic' issue of slow loading in chrome. It will all be down to individual scripts.

You'll need to determine 1) Which script is causing the slow load by process of elimination and then 2) Which part of the script is loading slowly, then you can take remedial action.

This could include minification or code refactoring.

Tools like fiddler2 will help you track this time, as you'll be able to view the indivdual page items load time.

share|improve this answer
Its already in a single line but the file size is high. Any idea? – Palani Feb 2 '12 at 13:40
i have updated the question with some more inputs. – Palani Feb 13 '12 at 12:54

Chome's auditing tools can tell you a lot about why is this happening, you should probably include more information about:

  1. how long did it take to connect to server?
  2. how long did it take to transfer content?
  3. how much other stuff are you loading on that page simultaneously?

anyway even without all that, here's a checklist to improve performance for you:

  1. make sure your javascript is treated and served as static content, e.g. via nginx/apache/whatever directly or cdn, not hitting your application framework
  2. investigate if you can make use of CDN for serving javascript, sometimes even pointing different domain names to your server makes a positive impact, e.g. instead of http://example.com/blah.js -> http://cdn2.example.com/blah.js
  3. make sure your js is served with proper expiration headers, don't re-download it every time client refreshes a page
  4. turn on gzipping of js content
  5. minify your js using different tools available
  6. put your script tags just before </body>
  7. investigate and cleanup/optimize your onload and document.ready hooks
share|improve this answer
Its already in a single line but the file size is high. Any idea? – Palani Feb 2 '12 at 13:43
do you see considerably better loading times in firefox or ie? anyway minification + gzipping should help tremendously – keymone Feb 2 '12 at 13:46
i have updated the question with some more inputs.any specific solution? – Palani Feb 13 '12 at 12:55

You should determine what´s taking time. Both FF and Chrome has a feature that shows the network traffic. Have a look at yslow as well, they have a great addon to Firebug.

share|improve this answer
i have updated the question with some more inputs. – Palani Feb 13 '12 at 12:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.