How to see the order of js scripts loading in a page

firebug, javascript, jquery

Solution

You could use Firebug's NET console or the pendants of other developer tools as well. This gives you something like the following:

Problem

how to see the order of js scripts in a page? I currently see the source html and go through the script declarations. But is there a better way to see the loading order?

Original source