While firebug's profile is ok... it inflates times quite a lot, prolly due to all the stuff it inserts around in your code. I compare FF w/FB vs FF w/o FB and the results were a lot different.
I'd not recommend it for very specific tests. Also, some approaches can be faster on FF and slower on other browsers (like string concatenation vs array push+join). -- Ariel Flesler http://flesler.blogspot.com/ On Sep 17, 1:51 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > Do you use Firebug? It has a "Profile" option under the Console tab, > that will profile (duh) all js action going on while it's on, giving > you details like number of function calls and the time each took to > execute, that's plenty of information ;) > > ricardo > > On Sep 17, 1:14 am, Alex Weber <[EMAIL PROTECTED]> wrote: > > > looking to find possible bottlenecks and basically optimize the hell > > outta my js which relies heavily on jquery and the occasional > > plugin... > > > is there a more elegant and efficient way to do this than to toss a > > few document.write()s at my code?? =P > > > thanks!! > > > -Alex