Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Currently my site takes a millennia to load even though it has barely anything in it. My assumption is that it's because there are quite a few images and JavaScript on the page.

Is there a way to test for what is causing the long load times?

share|improve this question
8  
Install the firefox and it's plugin firebug – vivek salve Dec 21 '12 at 10:33
7  
You'll probably want to look at reducing down your file sizes and the number of HTTP requests. Merge and minimise your JS and CSS files and reduce the image sizes (your background image is on the large side in terms of kb). – drmonkeyninja Dec 21 '12 at 10:35

13 Answers

up vote 40 down vote accepted

Test your page here PageSpeed Insights - Google Developers and you will see all suggestions for making your site faster.

Also your background image is 935KB. You can optimize your image. See tutorial here: http://inobscuro.com/tutorials/optimizing-images-for-web-35/

share|improve this answer
4  
great answer thankyou, thats such a useful tool!!! google impresses me yet again :) – dizzytri99er Dec 21 '12 at 10:59
Not sure it will help you an awful lot to optimize the size of the images. I'm sitting on a 100Mbit up/down connection and after a minute the site still hasn't loaded. – Eirinn Jan 4 at 9:41
No, the site I suggested does not help to optimize images. But some other sites like yahoo smushit, tinypng etc. may help – Enve Jan 4 at 10:43

Here are some basic things you can follow to increase your site speed:

  1. Post-load content: Don't load all of your stuff like JavaScript files, images, data, at first. Make a flow of which content your user should see first and load it in that order. This will reduce the user's perceived waiting time because they will be able to look at the loaded parts of the site while the other stuff loads.
  2. Pre load content: Benefit from the user's idle time. Load content in the backgroud using Ajax or image-caching tricks, so the user will not notice that the page is still "working". Because files are pre-loaded into the browser's cache already, when the user loads the next page or view, it will seem very fast because the data is already stored locally. (In short, the main idea behind post and pre-loaded content is to show the user what they want at first and then load other content in the background before they need to see that content. Use JavaScript or jQuery Ajax to load your content and cache them.
  3. Optimize Images:
    1. Reduce the quality of images to a extent which the human eye cannot figure out. You can compromise a little bit of image quality for greatly decreased file sizes, and thus much greater download/load speed.
    2. Don’t use the browser to downscale images: Don’t send a huge image and let the browser scale to a significantly smaller size using CSS width and height. Manually size your image to roughly the correct size, even if you do want to use some scaling like a fully-stretched background image.
    3. Use CSS replacement for the images.
    4. Use CSS sprites: Combine your small images to one image and show the proper part using CSS.
    5. Make images cacheable.
  4. Keep CSS on top: Keeping CSS on top make you feel page is loading faster. As CSS is applied as portion of content is loaded.
  5. Keep JavaScript at the bottom: JavaScript is used to manipulate DOM elements, so load the DOM element first so that the page will be rendered first, and then load your script. JavaScript also blocks parallel downloads.
  6. Minify JavaScript and CSS: Minifying CSS and JavaScript can reduce its size up to 50 to 30 % of the original copy.
  7. Use External CSS and JavaScript: .css and .js files are cacheable, so use external CSS and JavaScript files.
  8. Split component across domains: Split your component into two or three domains like example.com to com1.example.com and com2.example.com. This allows you to maximumize parallel downloads. Don’t keep more than two to four domains otherwise it will give you a DNS lookup penalty.
share|improve this answer
5  
Thanks Tin Man for improving readability of my answer. – Sudhanshu Yadav Jan 1 at 8:44

Here is the list where you can test your webpage:

  1. PageSpeed Insights - Google Developers
  2. YSlow
  3. Webpagetest
  4. Pingdom Tools
  5. GTmetrix
  6. iWebTool

Also to speed up your page you can use:

  1. Amazon CloudFront
  2. CloudFlare - has free plan
share|improve this answer

The other answers here do a good job of detailing performance debugging tools and tips to improve load times, so I won't repeat them.

Your main problem is that you load absolutely everything in your site before displaying your homepage to the visitor. This is unnecessary, and is the main contributor to the perception that your site loads slowly.

I can understand that you want to preload as much as possible, so that as the visitor browses your site, everything will seem to load instantly. However, all you're doing is moving the small load times for each section into one huge up-front load time. Where a visitor might browse only one area of your site, they are still paying for the load time of the whole site, instead of just the sections they visit.

The easiest way to implement small load times is to split each section into its own page, and then loading only what you display on that page. Resources such as Javascript and CSS usually cache pretty well, so you usually don't need to worry about their load times impacting anything other than your homepage.

Alternatively, assuming you want to keep your whole site on one page, you will need to dynamically add the various sub-sections to the page using Javascript, once everything required for your homepage has finished loading and the progress bar has been hidden. Yes, if the visitor is quick to click on a sub-section, they will see its content being loaded in, but if they're only interested in your Contact Me section, they will be able to get the information they need a lot sooner without even noticing that the other sections haven't fully loaded yet.

That, and don't use huge background images. It's okay to upscale a lower resolution image to fill the screen, and to up the JPEG compression level to decrease the file size. It's a background image and should not be a focal point - leave the high resolution images for your portfolio. :)

share|improve this answer
Agree with the points you're making except that the "main issue" is loading everything first. That's usually perfectly fine for a small portfolio site like this. If he wasn't using uncompressed JPEGs for everything the standard loading wouldn't be a big deal. – Ellen B Jan 1 at 0:07

Install the FireBug plugin into FireFox, then load your site with the NET tab open in FireBug. You can see how long each resource takes to load.

It looks like there are two background images that take over 20 seconds each to load.

share|improve this answer

I have few suggestions to improve the load time:

  1. You are using three background images, while only one is shown. Either remove the other two or load them later.
  2. Convert PNG images to JPEG and see if you can save on size.
  3. Load standard JavaScript files from the cdn repository instead of loading them from your server. There is a good chance that file may be found in its cache.
  4. Minify your JavaScript files after concatenating them, if you have not done so.
share|improve this answer

Chrome has a console where you can view loading times of the site and all things that need to be downloaded.

share|improve this answer

So: Yes, you really need to fix your site. People won't wait to load a site, particularly a personal / professional site. Biggest thing I'm seeing on your site is almost nonexistent image compression / optimization. Here are some guidelines:

Use JPEGs for photographs and gradients. Use PNGs (or GIFs) for line art or text. This has to do with the compression algorithms used for each type of image.

Usually a JPEG compression rate of 80% is pretty good for most images on the web, including all of your thumbnail / gallery shots. For example, this JPEG here: http://www.jj-triggs.com/images/page4_img3.jpg is 25k. 25k!!! That's HUGE, and you've got like 15 of them on the page! At an 80% compression rate (image size of 7k) I can detect a few compression artifacts but I'm also a professional designer & am looking for it. Even at 85%, the image size drops to about 8k.

Ditto your background images. bg_img1.jpg is clocking in at about 900k; bg_img2.jpg is 1.5 mb. This is crazy! Particularly since the cityscape is partially blurred out already — there's no detail to preserve that warrants a total lack of JPEG compression. I knocked the compression on bg_img2.jpg to 60%, got a filesize of <200k, and there's almost no detectable difference in quality: http://cl.ly/image/230I3L3x0n1D.

Sometimes, when the image is the focus of the content / site, it's okay for it to be big and less-compressed. But these images in your background and your galleries are just not important: they're background images. They're not meant to be studied. The gallery images ditto; they're just giving the user an idea of what they'll get on the next click.

Use selective JPEG compression. Adobe Fireworks offers this — if you have a large image where part of it is sharp and in focus but the rest is blurry or will be covered by content, you can select a region that you want a higher JPEG compression rate for (say 85%) and crank the rest of the image down to 50% or whatever. For example, here's Cityscape with selective JPEG selection http://cl.ly/image/0T2z330P083r. The in-focus parts are at 75%; the rest is at 50% with smoothing turned on.

Don't use graphics for text. In this day of TypeKit, Google Webfonts, and reasonable typographical control via CSS, it's almost never necessary.

Reduce the number of files that need to be transferred. Each image, JavaScript file, CSS file, etc. require their own HTTP request in addition to download times.

Here are a few articles about image compression and download times:

share|improve this answer

It a long reply ... but I feel it provides enough details to some basic approaches to improve a site's performance. The following answer will also be applicable to almost any site. Any specific examples provided below might be for current version of http://www.jj-triggs.com/

In the points below, I'm referring to the usage of Net Panel of Firebug add-on in Firefox but other browsers also have similar tools with almost the same approach as I have mentioned.

Install Firebug on Firefox and open your website. Enable Firebug for your site (F12). Enable Firebug's Net panel if it is not enabled already.

Your site: http://www.jj-triggs.com/ - takes 5-6 seconds on my system for repeat visits (For this answer, I have not mentioned approaches to improve on this) - but the first visit took around 60 seconds. (The points below focus on how to improve on that) Most of the points mentioned below would improve your site for the first load (or fresh reloads)

After having loaded the page already, to test fresh loads, you can use Ctrl+F5, Ctrl+R, Ctrl+Shift+R (depending on the browser). Monitor the Net Panel of Firebug when the page is loading.

How much time a site takes depends on:

- The speed of the site host server (seems OK, nothing much to do for now)

- Visitor's connection speed (cannot do anything for it)

- Everything else (where you need to fix many things).
  The important approaches to resolve them are listed below:
    - Serve the user files with less size but same content:
        - Approach:
            Enable gzip on files which contain text contents (*.js, *.css, *.html etc) (currently your site does not use gzip)
        - How to identify:
            In Net panel, expand the HTTP request details for a file, in the Headers tab of the expanded details, Content-Encoding field should show the value gzip.
        - Solution:
            It might need you to modify .htaccess file (or some other approach based on the server)
            Search on Google or StackOverflow to see how to enable it.

        - Approach:
            Use minified JS and CSS files
        - How to identify:
            In Net panel, expand the HTTP request details for a JS/CSS file, in the Response tab of the expanded details, the code should be a minified version (no whitespace characters) of the file.
        - Solution:
            Use either the minified JS/CSS files as provided by the library.
            Or you can minify them yourself by using tools like "JSMin" or "YUI (CSS and JS) Compressor"

    - Approach:
        - Serve the user optimum images, i.e., less size with good enough quality
    - How to identify:
        - In Net Panel, go to Images tab > Sort by size
        - Generally the size of the images should be ... 1kb to 30kb for simple icons and logos and 20kb to 250kb for photos and large backgrounds.
    - Solution:
        - Compress the large images with softwares like GIMP (free) or Photoshop.

    - Approach:
        - Load the files from a CDN if possible
        - eg: Load jQuery, jQuery UI etc from popular but still free CDN
        - Advantage even for first visit: If the user has visited any other site which refers to the same path, it would be fetched from the cache itself
    - How to identify:
        - Check the Net panel's "Domain" column for popular libraries like jQuery, jQuery UI etc.
          They should be getting loaded from a popular CDN such as Google.
    - Solution:
        - Include JS and CSS from (Google) CDN if available.

    - Approach:
        - Load CSS before JS
        - It may not necessarily help much with faster loading completion,
          but it usually gives a faster feeling of load because your CSS gets applied as soon as possible.
    - How to identify:
        - Check the Timeline column in Net panel. Usually CSS files should be the getting loaded before JS.
    - Solution:
        - Move the <script> tags towards the bottom of the page.

    - Approach:
        - Wherever possible, load third-party components like Google Maps dynamically after the page load has completed
    - How to identify:
        - Check the Timeline column in Net panel. The 3rd-party components should usually begin loading after almost all the other code for the site has loaded.
    - Solution:
        - The solution would depend on the third-party component and might be a bit tricky.
          Generally, loading the 3rd-party JavaScript after a small delay (using window.setTimeout and code to dynamically add script tags) would provide you better performance compared to loading the 3rd-party JS using plain HTML.

I believe fixing these mentioned issues might reduce your (http://www.jj-triggs.com/) first load time to 10-30% of the time it takes currently.

share|improve this answer

Use YSlow plugin for Firefox. It will give you detailed analysis on various performance buckets.

share|improve this answer

you can try this site and pingdom where you can check daily Performance of your site

share|improve this answer

You could have a check here too : Test site

This test shows you images are a great contributors to your load time. In particular background images that seems to be not optimized and weight 1.4 MB

Study this, reduce your number of requests, downscale your images, defer loading and you should begin to reduce your load time

Disclaimer : I am one of the dev invovlved in the free tool above

share|improve this answer

The main problem on this page are the big images bg_img1.jpg, bg_img2.jpg and bg_img3.jpg. They have a size between 0.91MB and 1.45MB.

share|improve this answer

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.