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, most of the popular websites, like google, yahoo detect if the user connection speed is slow and then give a option to load basic version of the website instead of the high end one.

What are the methods available to detect slow internet connections?

P.S. I think this is achieved through javascript, so I will tag it as a javascript question? However, I am looking for answers oriented more towards PHP, if this is also server related.

share|improve this question
1  
Just guessing: I can imagine that they use a simple timeout and check after that if the page contains certain elements. If not, the user must have a slow connection. – Felix Kling Aug 9 '11 at 9:36
I found this question asked here on SO. So, this question is a propable duplicate, but still answers there are not giving a concrete concept. You guys can close it, if you think otherwise. – Starx Aug 9 '11 at 9:37
@Felix Kling, May be, but Markup Elements load quite faster, the real time is consumed while rendering it like applying css, loading images etc. Will it give a definate output? – Starx Aug 9 '11 at 9:40

3 Answers

up vote 8 down vote accepted

You can start a timeout in an inline script block in <head>, which will be run as soon as it's encountered. You would then cancel the timeout when the load event fires. If the timeout ever fires, the page is loading slowly. For example:

<script type="text/javascript">
    var slowLoad = window.setTimeout( function() {
        alert( "the page is taking its sweet time loading" );
    }, 10 );

    document.addEventListener( 'load', function() {
        window.clearTimeout( slowLoad );
    }, false );
</script>

Obviously you would want to replace the alert with something a little more useful. Also note that the example uses the W3C/Netscape event API and thus won't work in Internet Explorer before version 9.

share|improve this answer
1  
+1, Very Smart.... – Starx Jan 26 '12 at 8:16

You could listen to two DOM events, DOMContentLoaded and load, and calculate the difference between the time these two events are dispatched.

DOMContentLoaded is dispatched when the DOM structure is ready, but external resources, images, CSS, etc. may not be.

load is dispatched when everything is ready.

http://ablogaboutcode.com/2011/06/14/how-javascript-loading-works-domcontentloaded-and-onload/

share|improve this answer
I read that article, but one thing strikes me. To read the connection speed, the JS codes have to wait for completion of both these events, but that's not what google or yahoo does. They detect speeds, as the page is being loaded, and prompt to the user about it... – Starx Aug 9 '11 at 9:53
@Starx: as said in the article, inline JavaScript could be run as the documents loads, before DOMContentLoaded is triggered. – Ryan Li Aug 9 '11 at 9:55
So what do you think, should be it those inline javascript? – Starx Aug 9 '11 at 9:58
@Startx: yes, it's absolutely viable there. Just a short line to record current time. – Ryan Li Aug 9 '11 at 15:51
But, to record time in between those two events we have to wait for both of them to complete. Or is there another event we can record... during the page loading. – Starx Aug 10 '11 at 0:07
show 4 more comments

You can get the connection speed by downloading some test resource (image would be more suitable) whose size is known to you (which is easy to get) and measuring the time taken to download it. Keep in mind that testing one time will only gives you the connection speed at that instant. Results may vary from time to time if user is using bandwidth parallel to the image tests. This results in the bandwidth available for your app, which is what we need exactly.

I read somewhere Google does similar trick using some 1x1 grid pixel image for testing the connection speed at the page load and it even shows you something like 'Connection seems slow, try HTML version'... or similar.

I also found this article useful demonstrating the same technique: http://www.klauskomenda.com/archives/2008/04/16/measuring-bandwidth-with-javascript/

Here is the example: http://www.klauskomenda.com/wp-content/uploads/2008/04/bandwidthr.html

Update: Here is another link describing the same technique - http://www.ehow.com/how_5804819_detect-connection-speed-javascript.html

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.