IE 8 and Firebug's Javascript profiler both showed that jQuery each()
spent a lot of time, but since the each()
is not inside a function, there is no way to tell which line it is, and there are lots of these each()
in the global scope of the source code. On Firebug, it can show you the file and line number, but it will take you to jQuery source code of each()
without any call stack, so it is no use.
Is there a way to find out which each()
it was?